There is a strange issue in the igGrid when both Grouping and filtering are enabled. Using filtering messes up the Grouping and the Sorting of the groups.
1. Go to the following URLhttp://ko.infragistics.com/products/jquery/sample/grid/bind-to-datatable
2. Select Show 20 records from the dropdown for the sample
3. Group by Salaried Flag and then by Gender
4. Type "A" into the filter under Title
4. Now remove the Salaried flag from the grouping area(only Gender should be left in the Grouping)
5. Now Clear the filter under Title
You will see that the groups for gender are repeated in the Grid and the sort order is also messed up. Is this a known bug? Is there a workaround for this?
Hello Sunil,
This issue has been resolved with the latest service release, builds 12.2.20122.2234 and 13.1.20131.2217. Please let me know if you require any further assistance with this matter.
I was able to see the behavior you described using the sample provided. I have attached the issue with our developers in our tracking system, with an issue ID of # 145179. This development issue will be assigned to a developer to research for a fix, workaround, or other resolution.
If some other resolution is reached, I will update this forum thread with more details on this.
I will also open a private support case for you. You can view the status of all development issues connected to this case from the "Development Issues" tab, when viewing this case on the "My Support Requests" page of our website.
I hope this helps.
Angel,
Did you get a chance to look at the sample that I uploaded? Thanks.
Thanks for the response. I have this problem happening in my application that does not really do any stuff remotely. I created a small sample and is attached to this post.
Please updated the URL in the following two lines in the attached accordingly before running it
<link href="http://localhost:3330/Content/Infragistics/themes/infragistics/infragistics.theme.css" rel="stylesheet" type="text/css" /><link href="http://localhost:3330/Content/Infragistics/structure/infragistics.css" rel="stylesheet" type="text/css" />
1. Group By Name and then ProductGroup
2. Now Type "blade" into the Name filter
3. Remove the "Name" from the GroupBy
4. Now clear the "Name" filter
5. You will see the same product group show up multiple times in the groups.
Please let me know If I am doing something incorrectly or if there is a work around.
Thanks
Hi,
When you clear a filter, the grid rebinds itself and the grouping is reset (because it binds to a remote URL, but all features are set to "local"), that's why you don't see the records ordered (you also don't see them visually grouped). The Workaround would be to set features to be remote, or bind to a JSON array directly. Let me know if it helps.
Angel