cancel
Showing results for 
Search instead for 
Did you mean: 

No row selected by default for end user in table

Former Member
0 Kudos

Hello,

I have a table where always first row comes as selected...

Now I have to write a code where none of row comes as selected by default for the user..........

I have to do this dynamically.....

IWDTable listView = (IWDTable)view.getElement("Table_0");

listView.<something has to go here>

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

This did the trick for me ...

wdContext.nodeT_Disp_Data().setLeadSelection(wdContext.nodeT_Disp_Data().NO_SELECTION);

My table is bound to T_Disp_Data node.....