Hi Team,
I have 7 fields in my list. 1st field is Status and grouping is applied on it. Sortmodel and Groupmodel looks like this,
sortModel: {
single: true,
sorter: [{
dataIndx: 'Status',
dir: 'up'
}],
space: true,
multiKey: null
}
var groupModel = {
on: true,
dataIndx: ['Status'],
summaryInTitleRow: 'all',
titleInFirstCol: true,
fixCols: false,
indent: 40,
collapsed: [false],
grandSummary: true,
title: [
"{0} ({1})",
"{0} - {1}"
]
};
Clicking on sort enabled field, sorts the row group as well. As required, I want to enable sort on all fields but Row Group (Status) should always be in Ascending order. It should not be sorted on any field sort. How should I do it?