Fetch Dirty Status for an ADP
Summary:
My use case. I have an editable table. When the user updates a row I add it to an ADP(updatedRowADP
). I have tracked the current Row(currentRow
) for dirty status. How can I get the dirty status for that particular variable(currentRow
) which holds the row data?
The below seems to get the dirty status of all the variables (if there is more than one variable for which the dirty status is tracked)
const getDirtyDataStatusResult = await Actions.getDirtyDataStatus(context, {});
However I only want to get the dirty status of the variable(currentRow
) that holds the current row data and if dirty then add it to the updatedRowADP
Tagged:
0