UPDATE: NEVERMIND, THIS FEATURE IS AVAILABLE IN FINAL RELEASE
Hello,
I'm evaluating if we can port all features (that we need) of our Telerik MVC Extensions Grid to the Kendo UI MVC Grid. I wasn't able to find an equivalent to the ForeignKeyfeature, which we use like this:
We don't use the Built in edit features but it's very useful for the column filtering feature, for example. Is there a replacement for this feature, if not, will there be one in future?
Best regards
Hello,
I'm evaluating if we can port all features (that we need) of our Telerik MVC Extensions Grid to the Kendo UI MVC Grid. I wasn't able to find an equivalent to the ForeignKeyfeature, which we use like this:
@(Html.Telerik().Grid<RowModel>().DataBinding(dataBinding => dataBinding.Ajax().Select("_GetData", "Data")).Columns(x => { x.Bound(y => y.Id).Width(40); x.Bound(y => y.Description).Width("40%"); x.ForeignKey(y => y.SomeForeignId, Model.ForeignIdResolveCollection, "ID", "Name").Width("80%"); }))
We don't use the Built in edit features but it's very useful for the column filtering feature, for example. Is there a replacement for this feature, if not, will there be one in future?
Best regards
Thomas