When I want to select one row in code I can do this:
$(this.Selector).jqxGrid({ selectedrowindex: Index });
and that works fine and the row is highlighted in the grid.
But I am trying to select multiple rows in code so I try this (where Indexes is an array):
$(this.Selector).jqxGrid({ selectedrowindexes: Indexes });
It partly works because those rows are selected when I read back selectedrowindexes but the selection is not highlighted visually in the grid.
I do have selectionmode=multiplerowsextended
So why does the multiple selection not show up in the grid? It shows up if I manually select multiple rows using the mouse.
Thanks