Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
How to get row values on edit row started event?
posted

I have an igGrid that allows row updating. I need to be able to call a method and get the current row values when the user starts to edit to the row, yet for some reason the 'editRowStarted' event does not return a reference to the values of the row. 'editRowEnded' is a good example of what I want - it allows you to access the values of a row simply by calling 'ui.values' on the ui parameter of the function. I know that 'editRowStarted' does return the 'rowID', but I have not been able to use that to get the values from a row. I'm sure this is a simple fix that I am overlooking.