Hi Juan,
Thanks for contacting Syncfusion Support.
We have created the sample for your requirement and download it from the below link:
http://www.syncfusion.com/downloads/support/forum/120847/ze/TableBinding192435997
In the above sample, we used “Table” binding feature of Grid control and passed the formatted data table id to the DataSource “Table” property and the grid is rendered based on the specified formatted data. Please refer to the following code example and online sample for table binding.
<script id="_table1" type="text/template">
<table>
. . .
//Code for Data format
</table>
</script>
@(Html.EJ().Grid<TableBinding.OrdersView>("FlatGrid")
.Datasource(ds => { ds.Table("#_table1"); })
. . .
)
|
http://mvc.syncfusion.com/demos/web/grid/tablebinding
Regards,
Saravanan A.