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

Get values from combobox in edit mode?

1 Answer 229 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Paul
Top achievements
Rank 1
Iron
Paul asked on 18 Jul 2016, 04:07 PM

Hi all...

 

I need to run a couple of discrete stored proc when I do my update from a grid.  I need to check if the combobox selection indicates a change to one field and if so execute etc.

I can't for the life of me figure out how to get that value, I tried an selectedindexchanged event and that doesn't seem to work either. I'd be very grateful for a nudge in the right direction as I'm veryyyyyyyyyy rusty :(

 

Here's what I tried most recently:

protected void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e)
{

if (e.CommandName == "Update")
{


GridEditableItem item = (GridEditableItem)e.Item;
RadComboBox combo =(RadComboBox)item.FindControl("updateComboBox");
var status = (string)item.GetDataKeyValue("status");
if (combo.SelectedItem.Text!= status)
{

 // Do my update...
}

1 Answer, 1 is accepted

Sort by
0
Viktor Tachev
Telerik team
answered on 21 Jul 2016, 11:18 AM
Hi Paul,

Please examine the following article that describes how you can get the values from the column editors in RadGrid and update the database.


Also, if you would like additional information on accessing controls in RadGrid cells you would find the article below interesting.



Regards,
Viktor Tachev
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
Grid
Asked by
Paul
Top achievements
Rank 1
Iron
Answers by
Viktor Tachev
Telerik team
Share this question
or