Hi,
We have an ASP.NET MVC application with EJ2.
There's a bug on our EJ2 Grid if we sort the same column 3 times consecutively (eg. ASC then DESC then ASC again).
- when we click the 1st time on the column header we have this in the request body
{
requiresCounts: true,
skip: 0,
sorted: [{
name: "OurSortableColumn",
direction: "ascending"
}],
take: 25
}
- we get the same data during the 2nd query
- the problem appears when we click the 3rd time on the same column, we don't have the "sorted" property anymore and it generates a bug on our back-end service.
{
requiresCounts: true,
skip: 0,
take: 25
}
Please note that there's no problem if we click on different columns consecutively.
What might cause this problem?
Thanks