|
Title: [SOLVED] How to get row value Post by: Pierre on April 25, 2016, 05:09:30 AM Hello
I'm using scrollview and cellediting extensions. On the onBeforeCellEdit(index,field) I have this code: Code: var row = $(this).datagrid('getRows')[index];Question is - how to get row value (for selected cell) when clicking on cell on any page? Thank you. Title: Re: How to get row value Post by: jarry on April 25, 2016, 08:07:17 AM Please call 'getRow' method to get the specified row data. This method is defined in scrollview.
Code: onBeforeCellEdit: function(index,field){Title: Re: How to get row value Post by: Pierre on April 25, 2016, 09:34:17 AM Awesome. I did not read the doc's :o
Thank you so much. |