Hi all
Due to technical reason we have to fully postback our ASP.NET MVC view. This view contains a Kendo TreeView which will be loaded and bound in the view to the model as follow:
ourModel is:
It seems that there is no property 'selected' in this TreeViewItemModel class. So my question is: Is it possible to select a TreeView Node on server side? If not what would be a good solution to preserver selected Node during postback?
Thanks for help
Adrian
Due to technical reason we have to fully postback our ASP.NET MVC view. This view contains a Kendo TreeView which will be loaded and bound in the view to the model as follow:
@(Html.Kendo().TreeView() .Name("EditMenu") .DragAndDrop(true) .BindTo(ourModel) )
List<Kendo.Mvc.UI.TreeViewItemModel>Thanks for help
Adrian