cancel
Showing results for 
Search instead for 
Did you mean: 

LinkToAction in Table

Former Member
0 Kudos

Hi all,

in a table we use a column with LinkToAction cell editors.

Do you know if there's a parameter available for mapping to get the row where the LinkToAction was selected?

Best regards,

Christian

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

There is no such parameter mapping, and it is unnecessary:

Row number == wdContext.nodeTableSource().getLeadSelection().

Regards,

VS

Answers (1)

Answers (1)

Former Member
0 Kudos

Valery already gave the correct answer.

Generally, you can find the event parameter names and types in the Javadoc of the corresponding UI element at the method mappingOf...().

In NW 05 there will be constant declarations for the event parameter names that can be used in the parameter mapping statements.

Armin

Former Member
0 Kudos

Hi Valery, hi Armin,

I know that I can use the LeadSelection, this happens if I selected the row.

What we would need is the following: A table which can be selected in some row, but a linktoaction should be selectable in another (unselected) row... Will there be such an feature in the near future?

Best regards,

Christian

Former Member
0 Kudos

Activating a table cell editor in a row will always (lead) select this row and thus change the lead selection of the context node used as the table's data source.

So you cannot activate a link in an unselected row because the lead selection is changed on clicking the link.

Armin

Former Member
0 Kudos

Hi Armin, hi Valery,

you're right the LinkToAction changes the LeadSelection.

Thanks,

Christian