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
230
Grid columns not displaying sorting icon when bound to ig.DataSource
posted

I'm setting my igGrid datasource to an ig.DataSource object that has fitltering and sorting configured. The igGrid is not displaying the up down arrows icons on the column headers even though the columns are sorted. If I open the multi sort dialog and make a change, then the icons show accordingly. Is there a way to force/refresh the grid to show the sort icons?

My ig.DataSource configuration looks like this:

sorting: { 

type: 'local',
caseSensitive: false,
mode: "multiple",
persist: true,
expressions: [{fieldName: "lastName", dir: "asc"}, {fieldName: "firstName", dir: "asc"}]
}