I have used jquery kendo grid for one my project and it is working like a charm.
But the only problem is when i try to add a new record to the kendo grid it is always adding that new record at last place i mean at last row ..
can we have any option to add a new record at first place . This is what i have in my add function
var tr = $(e.target).closest("tr");
var dataElem = this.dataItem(tr);
XGrid.gridControl.getKendoObject().dataSource.add(dataElem);
This is always adding the dataelement as a last row in the XGrid. Can we add the same as a first row ??
Thanks in advance