Hi,
I used RadGrid's simple data-binding through the DataBind() method, so there is only two steps to make the datagrid, which is on page load event
RadGridID.DataSource = FRManager.GetAllFRData();
RadGridID.DataBind();
Now i can drag and drop the row and i got the event of protected void RadGridID
_RowDrop(object sender, GridDragDropEventArgs e)
{
}
Whatever example is given on the telerik on below link, i used it to bind but not get success.
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx?
please let me know what to write in this event to work out this, i took one field named OrderNumber in the table, this field is in hidden in my datagrid.
Thanks,
I used RadGrid's simple data-binding through the DataBind() method, so there is only two steps to make the datagrid, which is on page load event
RadGridID.DataSource = FRManager.GetAllFRData();
RadGridID.DataBind();
Now i can drag and drop the row and i got the event of protected void RadGridID
_RowDrop(object sender, GridDragDropEventArgs e)
{
}
Whatever example is given on the telerik on below link, i used it to bind but not get success.
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx?
please let me know what to write in this event to work out this, i took one field named OrderNumber in the table, this field is in hidden in my datagrid.
Thanks,