This is my interface in here by "Add New Row" i will add new details, while submitting all details which is displaying here will send to RI,
but i want to send the only newly added details, how to separate the new from the old details, the new details will be add with the old details(it be local) only
Discussion posts and replies are publicly visible
Create a separate local variable holding a copy of the original data. Make sure to use a!refreshVariable to keep the original state. Then you can use the difference() function to get new or removed items.
in the same as of now when the edit icon clicked. it is considered as edited so i will send the respective row to ri,
But how i needed is ,
i need to check the particular rows old value and new value .if there is any difference then only i want to push the details to riis there any easy ways to achieve it
You will have to compare the values of the modified rows and append them to the RI in case they differ.