cancel
Showing results for 
Search instead for 
Did you mean: 

Send me help on " onLeadSelect " method for table

Former Member
0 Kudos

Hi,

Please send me code for onLeadSelect event for table.If possible please explain practical code for that.

Regards,

Gurprit Bhatia

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

If in Table you are displaying master data .

on selecting one column of the table you can display item level details of the selected column.

Onleadeselect can be used in this scenarios.

thanks

Sunitha.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

The LeadSelect Event is executed whenever you make a selection in the table..

for example, you can check the leadselection of the table by just writing a simple code in the event handler mapped to this event.

int lead = wdccontext.<nodename>.getLeadSelection();

wdcomponentApi.getMessagemanager.reportSuccess("Lead Selection"+lead);

Here <nodename> denotes the node which is bound to the table, so you can get the node's current lead selection.

Regards,

Karthikeyan.R

Former Member
0 Kudos

This event is triggered when the lead selection of a table changes. Assign an action to this event if you want to react on this.

Armin