This is a migrated thread and some comments may be shown as answers.

how to display of save and cancel button in right side for RadGrid "InPlace" edit mode

2 Answers 307 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Dhamodharan
Top achievements
Rank 1
Dhamodharan asked on 25 Mar 2011, 10:09 AM
Hi,

I have radgrid and "inPlace" edit mode. whenever i want to edit save and cancel display left side automatically. but i want to display right side in these two button. Please let me know how do we display in right side.

I have attached image also. please check and give me a tips for this one,

Thanks in Advance,
Dhamu.

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 25 Mar 2011, 11:14 AM
Hello Damu,

One option is to place the GridEditCommandColumn at the end of all columns which will dispaly the edit button at right.
Here is a  sample markup.
<telerik:RadGrid ID="rad" runat="server"  DataSourceID="SqlDataSource1 ">
      <MasterTableView DataKeyNames="EmployeeID" EditMode="InPlace" >
          <Columns>
               <telerik:GridBoundColumn DataField="City" HeaderText="City">
               </telerik:GridBoundColumn>
               <telerik:GridEditCommandColumn ButtonType="ImageButton">
               </telerik:GridEditCommandColumn>
            </columns>

Thanks,
Shinu.
0
Dhamodharan
Top achievements
Rank 1
answered on 25 Mar 2011, 11:36 AM
Thanks,

It is working fine.
Tags
Grid
Asked by
Dhamodharan
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Dhamodharan
Top achievements
Rank 1
Share this question
or