This question is locked. New answers and comments are not allowed.
Hi,
Is there any way to use InLineTemplate with self referencing data. when i use InLineTemplate i can only see root levels
Any ideas,
Is there any way to use InLineTemplate with self referencing data. when i use InLineTemplate i can only see root levels
Any ideas,
@(Html.Telerik().TreeView().Name("LokasyonTree").BindTo((System.Collections.IEnumerable)Model, map =>{map.For<LokasyonTreeView>(binding => binding.ItemDataBound((currentItem, data) =>{currentItem.Text = data.Ack + (data.IsDisabled ? " [ disabled ]" : "");currentItem.Value = data.LokasyonId.ToString();//currentItem.Template.InlineTemplate = @<text>@Html.ActionLink("Edit", "Edit", "Location", new { id = data.LokasyonId }, null)</text>;}).Children(data => data.Childs));}))