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

Grid editable online

3 Answers 67 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Raul
Top achievements
Rank 1
Raul asked on 16 Dec 2008, 08:46 AM
Hi all,

I'm using RadGrid control in my application, and I have read in documentation this segment:

When the user presses the edit button, if the table view is configured for in-line editing, the Update and Cancel buttons appear in place of the edit button and the cells on the row become editable.

But I have looked for all grid properties but I have not found any property called "table view inline editing", so how I can apply this to my grid?? and where I can find this property??? as I'm still new in using rad controls.

Regards

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 Dec 2008, 09:27 AM
Hi Raul,

Set the property "EditMode="InPlace" to get desired scenario.

ASPX:
<telerik:RadGrid 
   ID="RadGrid1" runat="server" DataSourceID="AccessDataSource1" GridLines="None"
 <MasterTableView EditMode="InPlace" DataSourceID="AccessDataSource1"
   <Columns> 
     <telerik:GridEditCommandColumn /> 
   </Columns> 
 </MasterTableView> 
</telerik:RadGrid> 

Check out the documentation to get more details.
In place

Thanks,
Shinu.
0
Dimo
Telerik team
answered on 16 Dec 2008, 09:29 AM
...and here is the example:

http://demos.telerik.com/aspnet-ajax/Grid/Examples/DataEditing/AllEditableColumns/DefaultCS.aspx


Regards,
Dimo
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Raul
Top achievements
Rank 1
answered on 16 Dec 2008, 09:55 AM
Thanx alot it works
Tags
Grid
Asked by
Raul
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Dimo
Telerik team
Raul
Top achievements
Rank 1
Share this question
or