cancel
Showing results for 
Search instead for 
Did you mean: 

When table lead is unselected

Former Member
0 Kudos

Hi all,

I have a table with 4 fields. The 'enabled' property of table cell editor for these fields are bound to context value attributes of type boolean.Initially these fields are set to disabled mode.

When ever a particular lead is selected, the fields are enabled by,

wdContext.current<TableElement>().().setEnable_M_Name(true);

wdContext.current<TableElement>().().setEnable_Status(true);

wdContext.current<TableElement>().().setEnableMStatus(true);

wdContext.current<TableElement>().().setEnable_TargetDate(true);

Now, when I lead select any other row, that row becomes enabled.But the problem is the first selected row still remains in the enabled state.. Its not going back to disabled state.

How can I make only the currently selected row enabled or make the previously selected row to disabled mode.

Thanks

Anjana

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi all,

This problem is solved!

I created 4 new value nodes inside my table node for each of these fields. created value attribute of type boolean.

Set the value node cardinality to 1-1.

Mapped value attribute to the table cell editor 'enabled' property and set it to tru or false in the implementation accordingly.

Thanks

Anjana