cancel
Showing results for 
Search instead for 
Did you mean: 

dirty field check on table editable fields

Former Member
0 Kudos

Hi

I have a table with 2 columns which are input fields. Initially it is populated with data. the user can click on any of the columns and edit the data.

How can I get to know which fields he has edited and which ones he has not edited?

If I think about 'onlead select' change , I also find that he can move around the table input fields with the tab key which does not change the lead selection.

Any suggestions as to how I can tackle this?

<b>NOTE:</b> It is required that I have all the fields in the table as editable <b>all the time</b>.

Accepted Solutions (1)

Accepted Solutions (1)

former_member185029
Active Contributor
0 Kudos

Hi Jack,

You can try following thing.

Loop at the table node and check for this value


for(int i=0;i<wdContext.nodeTable().size();i++)
{
if(wdContext.nodeTable().getTableElementAt(i).isChanged())
.....
YOUR CODE
......

Where Table is supposed to be a node name assigned to the table UI.

It returns value true or false when node value at i th location is changed.

Do you need more help? If no please reward points

Ashutosh

Former Member
0 Kudos

Hi Ashutosh

Thanks...:-). worked well.

jack

Answers (0)