I am working on a proj. where I have to use two edit buttons on a RadGrid.
one regular edit button that will edit every column, <telerik:GridEditCommandColumn UniqueName="EditCommandColumn"></telerik:GridEditCommandColumn>
one regular edit button that will edit every column, <telerik:GridEditCommandColumn UniqueName="EditCommandColumn"></telerik:GridEditCommandColumn>
and one that is to be used as a replace user.
<telerik:GridButtonColumn UniqueName="ReplaceCommandColumn" CommandName="Edit" Text="Replace"></telerik:GridButtonColumn>
I am basically trying to acomplish replacing one user account with another in my database.
The problem I am having is since my replace button is using edit as its commandName it is returning all the columns for edit as opposed to specific ones I want.
I just want it to return two fields when I replace, and all fields when I edit.
Is there a way to customize the edit command? Since it is the one that is returning all the field. If not is there a better approach?