I have been utilizing Angular along with uigrid, which is an excellent library for displaying data in a tabular format. Everything looks good when displaying the table. However, when I update an item and click on a Save button that triggers a rest service call, I noticed some additional data attached to my table's content.
While inspecting this in Chrome's developer tools window, it seems like there is extra information within the data structure. Each object appears to have an additional field (e.g., $$hashKey: "uiGrid-00H"), which causes issues during the rest call process.
My main question is how can I retrieve the current table data in my controller without including this unnecessary additional information added by uigrid?
Any insight or advice would be greatly appreciated. Thank you - Ro