This question is locked. New answers and comments are not allowed.
Hi,
I am trying to both bind a tabstrip to a model and use load on demand. I have a tabstrip bound to a model like this:
I want to call LoadContentFrom, but I don't see how to do it. How is this done?
Thanks!
AldenG
I am trying to both bind a tabstrip to a model and use load on demand. I have a tabstrip bound to a model like this:
@{ Html.Telerik().TabStrip() .Name("Skills") .BindTo((IEnumerable<string>)ViewData["tsvd"], (item, navData) => { item.Text = navData; // following method doesn't exist item.LoadContentFrom("Skills", "People", new { skill = HttpUtility.UrlEncode(navData) }); }) .Render();}Thanks!
AldenG