    @(Html.Kendo().Grid<MyClass>()
            .Name("grid")
                    .ToolBar(toolBar => toolBar.Custom()
                        .Text(".XLS")
                        .HtmlAttributes(new { @class = "export xls btn" })                            
                        )
            .Columns(columns =>
            {
                columns.Bound(c => c.Datetime).Width(140).Title("Date");
                columns.Bound(c => c.UUIDandName).Width(190).Title("UUID");
                columns.Bound(c => c.Rating).Width(190);
            
                columns.Template(@<text></text>)
                    .ClientTemplate("<a href='" + Url.Action("RefreshTableAjaxFromOtherPage", "Map", new { SessionId = "#=SessionID#", Latitude = "#=Latitude#", Longitude = "#=Longitude#", Country = "#=Country#" }) + "' style='display:block;text-align:center;'><img  src='./Content/Images/icon_location_color.png' /></a>")
                   .HtmlAttributes(new { style = "text-align: left;" })
                   .Width(60);
                        })          

          

            .Sortable()
            .Events(ev => ev.DataBound("onTableDataBound"))
          
	//the template call	             		

	  .ClientDetailTemplateId("template")          
        

            .DataSource(dataSource => dataSource
                .Ajax()
                .Read(read => read.Action("RefrTable", "AnsChart").Data("additionalInfo"))
              
            )              
            )




    <script id="template" type="text/kendo-tmpl">
        <div>
            <div class="feedbackQuestion">
                # for (var i = 0; i < FeedBackForm.FeedBackQA.length; i++) { #
                <ul>
                    <li>#= FeedBackForm.FeedBackQA[i].Question #   <span class="feedbackanswer">    #= FeedBackForm.FeedBackQA[i].Answer #</span></li>
                </ul>
                
                # } #
            </div>
           
        </div>
        
    </script>
