This question is locked. New answers and comments are not allowed.
Hi,
I'm using Extensions for ASP.NET MVC Q3 2011(open source version) with Razor engine and Asp.net MVC3 architecture.
I want to bind a grid to a entity in my database which has self referring structure (like a tree). Therefore, I can not define it like examples with fixed levels, because I do not know how many levels this grid has. So, I want to bind my grid dynamically to a model.
I'm also using Fluent NHibernate and because of that I store children and parent in my entity.
Is there a way to do this? I couldn't find anything in documentations.
Am I missing something? because in Ajax and Winform components, it has been implemented.
I understood that it is better to use tree component for this purpose, but, Is it possible to edit nodes in Telerik tree?Is editable tree supported by Telerik?I could not find it in documentations.
I want also apply a custom localization to my grid. I want to change it's properties to my custom provider (I've done it in Winforms components). Is MVC grid also support this?
Thanks.
I'm using Extensions for ASP.NET MVC Q3 2011(open source version) with Razor engine and Asp.net MVC3 architecture.
I want to bind a grid to a entity in my database which has self referring structure (like a tree). Therefore, I can not define it like examples with fixed levels, because I do not know how many levels this grid has. So, I want to bind my grid dynamically to a model.
public class Category : Entity { public virtual int Id {private set; get; } public virtual string Title { set; get; } public virtual string Description { set; get; } public virtual string ParentsPath { set; get; } public virtual IList<Category> Children { get; private set; } public virtual Category Parent { get; set; }}Is there a way to do this? I couldn't find anything in documentations.
Am I missing something? because in Ajax and Winform components, it has been implemented.
I understood that it is better to use tree component for this purpose, but, Is it possible to edit nodes in Telerik tree?Is editable tree supported by Telerik?I could not find it in documentations.
I want also apply a custom localization to my grid. I want to change it's properties to my custom provider (I've done it in Winforms components). Is MVC grid also support this?
Thanks.