Hello,
We have some RadGrids using InPlace editing and have a GridEditCommandColumn where we use ImageButtons for Edit, Update, and Cancel. This functionality works great except I'd like to have the Cancel Button on the left and the Update button on the right (it currently defaults the other way around). Normally this wouldn't be a big deal, but we have a Web standard in place that says all Cancel buttons should precede Save buttons. Here's what my code for GridEditCommandColumn looks like:
Is there a way I can change the order of the Save and Cancel buttons? Even if there is a programmatic way in code to do this, that solution would work as well. Thank you in advance for your reply!
Brian
We have some RadGrids using InPlace editing and have a GridEditCommandColumn where we use ImageButtons for Edit, Update, and Cancel. This functionality works great except I'd like to have the Cancel Button on the left and the Update button on the right (it currently defaults the other way around). Normally this wouldn't be a big deal, but we have a Web standard in place that says all Cancel buttons should precede Save buttons. Here's what my code for GridEditCommandColumn looks like:
<
telerik:GridEditCommandColumn
UniqueName
=
"EditCommandColumn"
EditImageUrl
=
"/Common/Images/GridIcons/Edit.png"
ButtonType
=
"ImageButton"
CancelImageUrl
=
"/Common/Images/GridIcons/Cancel.png"
UpdateImageUrl
=
"/Common/Images/GridIcons/Save.png"
ItemStyle-HorizontalAlign
=
"Center"
HeaderStyle-HorizontalAlign
=
"Center"
ItemStyle-Wrap
=
"false"
ItemStyle-Width
=
"60px"
HeaderStyle-Width
=
"60px"
/>
Is there a way I can change the order of the Save and Cancel buttons? Even if there is a programmatic way in code to do this, that solution would work as well. Thank you in advance for your reply!
Brian