This question is locked. New answers and comments are not allowed.
Hi List,
I have created tree view for self-referencing table.
But I am not able to navigate using this menu. When i click my controller action never get called.
Is it a know problem? or Please suggest how can i solve this problem.
thanks.
I have created tree view for self-referencing table.
Html.Telerik() .TreeView() .Name("menuctrl") .BindTo(Model, Sub(mappings) mappings.For(Of Menu)(Sub(binding) binding.ItemDataBound(Sub(item, menu) item.Text = menu.name item.Value = menu.id.ToString() End Sub).Children(Function(submenu) submenu.CTS_Menus) End Sub) mappings.For(Of Menu)(Sub(binding) binding.ItemDataBound(Sub(item, menu) item.Text = menu.name item.Value = menu.id item.ControllerName = "Error" item.ActionName = "Index" End Sub) End Sub) End Sub).Render()But I am not able to navigate using this menu. When i click my controller action never get called.
Is it a know problem? or Please suggest how can i solve this problem.
thanks.