This question is locked. New answers and comments are not allowed.
I m doing this in my view.
@( Html.Telerik().TabStrip()
.Name("MeasurementScheme")
.Items(tab =>
{
tab.Add()
.Text("Weight Measure")
.LoadContentFrom("IndexWeight", "MeasurementScheme")
.Selected(true);
tab.Add()
.Text("Dimension Measure")
.LoadContentFrom("IndexDimension", "MeasurementScheme");
})
)
But when i run my code it only displayed the partial view of first tab and when clicked on second tab it doesn't call the second one.
@( Html.Telerik().TabStrip()
.Name("MeasurementScheme")
.Items(tab =>
{
tab.Add()
.Text("Weight Measure")
.LoadContentFrom("IndexWeight", "MeasurementScheme")
.Selected(true);
tab.Add()
.Text("Dimension Measure")
.LoadContentFrom("IndexDimension", "MeasurementScheme");
})
)
But when i run my code it only displayed the partial view of first tab and when clicked on second tab it doesn't call the second one.