I'm using kendo grid and I've Columns array like below
columns: [
{
field: "Column1",
title: "Column 1",
width: "120px"
},
{
field: "Column2",
title: "Column 2",
width: "120px"
},
{
field: "Column3",
title: "Column 3",
width: "160px"
},
.
.
.
]
How to set the order of the columns display in kendo grid or Is it possible any other way? Like 1st Column2 and then Column3 and then Column1 need to be displayed.
Thanks in Advance!!!!