home

download

tab strip


AS all Telerik coponents are loaded into the client form a call to the Telerik javascript libraries. Below the example is the code for this tab strip.

<% Html.Telerik().TabStrip().Name("TelTabStrip").Items(i =>
  {
 i.Add().Text("Tab 1").Content(() = >
  {%>
  < img src="../../Content/Images/Bordeaux/vineyard.jpg" />
   < %});
 i.Add().Text("tab 2").Content( () => {% >
  < img src="../../Content/Images/Bordeaux/plaza.jpg" />
   > %});
}).Render(); %>