or
Hi,
How can I change the width of the current column in the table with using ChangeTableGridColumnWidth method?
How could I get the current table, current gridColumnIndex?
I use 2012.2.912.40 RadControls version.
Regards,
Igor
private void radGridView1_CustomSorting(object sender, GridViewCustomSortingEventArgs e){ MyObjDate row1Freight = new MyObjDate(e.Row1.Cells["colDate"].Value.ToString()); MyObjDate row2Freight =newMyObjDate(e.Row2.Cells["colDate"].Value.ToString()); if (row1Freight > row2Freight) { e.SortResult = 1; } else if (row1Freight < row2Freight) { e.SortResult = -1; } else { e.SortResult = 0; }}