Skip to main content

Hi All,

I had editable list view and on Save button i am looping through all records and saving that one by one in DB. Some records are coming from DB which is save previously. I am looking each records and base on table ID either I am updating existing records or adding new records. I had more than 100 records so saving one records each it is taking too much time.

Is there any way we can update some flag in particular row where user has did some changes or newly add record.

So there will be new column called Flag and if user update /add any records I would like to setup value of that particular row value to True.

 

 

Hi Tan,


 


Please use this action


Execute a method for items that have been changed


 


this will give you better results:



 


 


Hi ,
Thanks for your reply. I would like to update the particular row value i.e.
ID Name IsUpdate
100 A False
101 B True
102 C True
103 D False
So at time of save i will check whether value for IsUpdate columns on that row, if its True then i will update that records in DB.

Reply