Hi,
I am trying to drag & drop rows within a single Grid and it usually works fine. I can successfully reorder rows. However, if I add a Query to the grid like the one below:
<SfGrid ID="Grid" DataSource="@Orders" Query="CheckListQuery"........>
@code{
Query CheckListQuery = new Query().Where("CustomerID", "equal", "ANANTR");
}
The result is inconsistent. Sometimes nothing move, other time the row moves but not at the desired location. But in all cases, it never work. You can easily reproduce that with any project.
Thanks for fixing this important function soon.
ma