or
function Grid_Command(sender, args) {
args.set_cancel(
true);/
args.get_commandName(), args.get_commandArgument());
//Do Sorting with JQuery
}
1. How do I know the sorting mode in client side (asc, desc or no sort..)?
2. Also I want to display custom sort image next to the coumn header. How do I do that?
Thanks
[ToolboxData("<{0}:RadComboBoxEx runat='server'></{0}:RadComboBoxEx>")]public class RadComboBoxEx : RadComboBox{ public RadComboBoxEx() : base() { //this.DisabledStyle.BackColor = System.Drawing.Color.White; //this.DisabledStyle.ForeColor = System.Drawing.Color.LightGray; this.Init += new EventHandler(RadComboBoxEx_Init); } void RadComboBoxEx_Init(object sender, EventArgs e) { SetDisabledStyle(this.Controls); } private void SetDisabledStyle(ControlCollection controlCollection) { foreach(Control control in controlCollection) { if ( control is RadInputControl ) { RadInputControl input = (RadInputControl)control; input.DisabledStyle.BackColor = System.Drawing.Color.White; input.DisabledStyle.ForeColor = System.Drawing.Color.LightGray; } else { SetDisabledStyle(control.Controls); } } }

