You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On changeSort function, I found that if I set a onChangeSort function, this.populate() is not triggered since it's not in the right condition, actually:
if (p.onChangeSort) {
p.onChangeSort(p.sortname, p.sortorder);
} else {
this.populate();
}
What I did to reload correctly the grid on sort:
if (p.onChangeSort) {
p.onChangeSort(p.sortname, p.sortorder);
}
this.populate();
Is this a bug or is it something you did on purpose? :)
Thanks for reading
The text was updated successfully, but these errors were encountered:
On changeSort function, I found that if I set a onChangeSort function, this.populate() is not triggered since it's not in the right condition, actually:
What I did to reload correctly the grid on sort:
Is this a bug or is it something you did on purpose? :)
Thanks for reading
The text was updated successfully, but these errors were encountered: