This question is locked. New answers and comments are not allowed.
Hi ,
working with MVC I have used RadTabStrip in ma page , by the following code
@Html.Telerik().TabStrip().Name("customer-edit").Items(x =>
{
//x.Add().Text("Basic Details").Content(@Html.Partial("CustomerDetailsBasic", Model).ToHtmlString()).Selected(true);
x.Add().Text("Edit").Content(@Html.Partial("CustomerEditableInfo", Model).ToHtmlString()).Selected(true);
x.Add().Text("Work Orders").Content(@Html.Partial("CustomerWorkOrders", Model.WorkOrdersList).ToHtmlString());
})
Resulting page shows both tabs , but unable to switch ...
i guess there is no problem with above code , but i dont know where to look to diagnose the problem . plz help me out ..
Thanx ...
working with MVC I have used RadTabStrip in ma page , by the following code
@Html.Telerik().TabStrip().Name("customer-edit").Items(x =>
{
//x.Add().Text("Basic Details").Content(@Html.Partial("CustomerDetailsBasic", Model).ToHtmlString()).Selected(true);
x.Add().Text("Edit").Content(@Html.Partial("CustomerEditableInfo", Model).ToHtmlString()).Selected(true);
x.Add().Text("Work Orders").Content(@Html.Partial("CustomerWorkOrders", Model.WorkOrdersList).ToHtmlString());
})
Resulting page shows both tabs , but unable to switch ...
i guess there is no problem with above code , but i dont know where to look to diagnose the problem . plz help me out ..
Thanx ...