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
195
Getting cell values after Grouping a column
posted

Hi,

 

I notcied that when using a GroupBy, a new "column" is added to the Cells group in the event arg which throws off the count.  What would be the best way to get values from particular cells in case of selecting a row after grouping a column?  I can't use index number since a new cell is added after groupby.  Can I use the column name intead like this:

 

function handler (evt, ui) {

var id = ui.row.element[0].cells["ID"].innerText;

}

Thanks in advance for any help!