Grouping with mData
Grouping with mData
When using plain arrays, the standard suggested row grouping example works great. But when using the mData feature with a named array, the grouping headers all appear as "undefined", due to [code]var sGroup = oSettings.aoData[ oSettings.aiDisplay[iDisplayIndex] ]._aData[ columnindex ] [/code] returning 'undefined', leaving me with an undefined sGroup variable. What should I change to make this work?
This discussion has been closed.
Replies
Allan
[code]sGroup = oSettings.aoData[ oSettings.aiDisplay[iDisplayIndex] ]._aData.type[/code]