-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support server grouping #2
Comments
Agreed. Looking into it. |
Welllll.....I tried to do this with the DyanmicLinq library, and it's not so easy since you can't get a typed queryable from |
Interesting, a new passable list of column names could be created and then processed using the SQL/LINQ 'group by'? Maybe something like this example from Jon Skeet for an IEnumerable query.
|
Interesting idea, but I'm still unclear on the implementation |
What part of the implementation are you referring to?
I may end up looking at this in more detail in a few months and depending on the direction of our project takes. Edit: Our project went a different direction with the open release of the newer Kendo controls. We are reviewing a larger scope. |
The .QueryByCube() function provided by the AdaptiveLINQ component (www.adaptivelinq.com) can help you to implement an OData feed performing server side analysis query (GroupBy + Aggregation).
|
Does that help only in terms of OData? |
@gramx Good luck! |
@burkeholland Thanks, the team is looking forward to some of the new open items. 👍 |
Hi, is there any progress on this issue? I think this one is crucial for Kendo UI when using server side actions. When I use server side paging, there is no use in using client side grouping. I currently use a hack in our application leveraging the Kendo UI MVC Helpers (setting the transport of the Kendo UI DataSource to aspnetmvc and using the corresponding libraries on the server side.) Telerik has already implemented this functionality. Grouping works as expected. Shouldn't it be easy to implement this in the dlinq-helper library? So we wouldn't have to use the Kendo.MVC library in our single page applications at all. |
I would still love to see this implemented. I took a look at implementing my own version but as you said before... it got complicated. 👍 |
@CraigHead @kpko @burkeholland @gramx |
I add fork to add ServerGrouping for one field and fix VS2015 (non-static method requires a target) error. |
Is any of those forks which implement serverGrouping is going to be pulled back to the master? |
@HemenRohani @mshtawythug why don't you make pull requests? |
@HemenRohani @mshtawythug @burkeholland Is your fork up-to-date? |
@CraigHead I tried fork of @mshtawythug. There is some easy to fix bug with grouping and no support for aggregates and it works. We are going to use it in production. @HemenRohani made only some changes to readme.md file I see several pull requests waiting for approval for a long time. Looks like @kendo-labs no longer cares about this repo |
@CraigHead yes it is, it is being used for production data in my company, The grouping still needs some work on aggregates but everything else works like a charm |
@CraigHead yes it is, server grouping for one level with aggregates is working. |
Considering the Kendo UI DataSource supports serverGrouping, it would be beneficial if the dynamic GroupBy extension method could be used with the incoming group parameter to perform the appropriate grouping.
The text was updated successfully, but these errors were encountered: