This question is locked. New answers and comments are not allowed.
@(Html.Telerik().TabStrip() .Name("TabStrip") .Items(tabstrip => {tabstrip.Add() .Text("?? ") .Content(@<text> @(Html.Telerik().Grid(ListHelper.GetProductPictures(Model.ProductID)) .Name("Grid2") .DataKeys(dataKeys => { dataKeys.Add(m => m.PictureFile); dataKeys.Add(m => m.ProductID); }) .DataBinding(dataBinding => dataBinding.Server() .Delete("DeletePicture", "Products")) .Columns(columns => { columns.Bound(m => m.SortOrder).Title("??").Width("20%"); columns.Template( @<text> <img alt="@item.PictureFile" src="http://www.365gift.com/Products/Pictures/@(item.ProductID)/@item.PictureFile" width="80" /> </text> ).Title("??").Width("60%"); columns.Bound(m => m.PictureFile).Title("???").Width("10%"); columns.Command(command => command.Delete()).Title("??").Width("10%"); }).Render(); ) </text> ); }).SelectedIndex(0).Render(); )
The "@<text> </text>" in the template of Grid which inside the tabstrip show the error "Inline markup blocks (@<p> content </p>) cannot be nested . only one level of inline markup is allowed ."