In the html mark up of my component is there a way to specify order, or index of my grid columns like below?
<kendo-grid-column field="ProductID" title="ID" width="40" index=0></kendo-grid-column><kendo-grid-column field="ProductName" title="Name" width="250" index=2></kendo-grid-column><kendo-grid-column field="UnitPrice" title="Price" width="80" format="{0:c}" index=1></kendo-grid-column>