hello,
I need to disable AJAX on RadGrid's one command for file download purpose and so I, first, made use of client settings and there used onCommand client side where I make AJAX disabled which works fine at its part
So the flow goes first at client side and first enables/disables AJAX and then goes server side on ItemCommand event where I can not access e.Item's values and even data key value
Please refer to my code snippet for server side event-ItemCommand:
GridEditableItem editedItem = e.Item as GridEditableItem; |
Hashtable newValues = new Hashtable(); |
editedItem.ExtractValues(newValues); |