cancel
Showing results for 
Search instead for 
Did you mean: 

table row selection

Former Member
0 Kudos

hi

i have a scenario where in the

table i have 10 row and instead of

onLeadSelect() on the table with single click

where i can open a pop-up window ,

i need a double click on the table row as in

if i double click on a particular table row it should

open a pop-up window and show that particular row details

in the pop-window view .

can any one help me .

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Click events are not supported in WD.

Regards

Ayyapparaj

Former Member
0 Kudos

hi

thanks for the response

int n=wdcontext.nodetable.size();

int n1=wdcontext.nodetable.getLeadSelect()

int x=wdcontext.nodetable.currenttableelement.index();

if(n1=x)

{

wdcontext.nodetable.isselected(i)

// code for opening modal window

}

this code code i have written

when i click on a particular row and click a button

which should populate the row data inthe popupwindow

its not working as required

any suggestions .

Former Member
0 Kudos

It's much simpler. Just bind the UI elements inside the popup window to the attributes under the data source node of the table. Then these UI element will automatically relate to the lead-selected row.

Armin