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

Update one column at a time in edit mode

1 Answer 63 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Lee Malo
Top achievements
Rank 1
Lee Malo asked on 03 Mar 2020, 06:50 PM

Can someone give me an example of editing one cell at a time in edit mode?

For example If i have a Table    Color | Make | Model , and i edit it I get 

Color ____________

Make____________

Model ____________

Update Cancel

this sends the parameters Color | Make | Model  to the stored procedure

I want to do this

Color ___________ Update

Make ___________Update

Model __________Update

This will send the datakey, the field name Color and the value for color.

Is this possible? and did I make sense?

1 Answer, 1 is accepted

Sort by
0
Attila Antal
Telerik team
answered on 06 Mar 2020, 04:10 PM

Hi Lee,

The built-in editing functionality of the Grid is beyond the described behavior but can be easily implemented.

Instead of using the Grid's built-in editing system, you can create your own. 

For example, try using Templates Columns and in each cell, you can place a TextBox and a Button.

Using the button, you can make the Grid fire specific commands see How to Fire Command Events. For instance, buttons in the Column1 cells could fire "UpdateColumn1Data" and so, you can access the cell, its value and only update that value in the database. Here is the article that will help you access the cells and values: Accessing Values and Controls

You may also inspect the code in the following example to see how it was implemented and get some ideas, inspiration from it: Update all, individual or selected rows using RadGrid with InPlace edit mode

 

Kind regards,
Attila Antal
Progress Telerik

Get quickly onboarded and successful with UI for ASP.NET AJAX with the Virtual Classroom technical trainings, available to all active customers. Learn More.
Tags
Grid
Asked by
Lee Malo
Top achievements
Rank 1
Answers by
Attila Antal
Telerik team
Share this question
or