Infragistics for ASP.NET 3.5.
We're having difficulty changing the DataValue of at WebCombo on the server side. We have the combo populated, and we want to change the value during a postback to one of the other selections, but this is causing trouble.
Is this the proper way to be doing this?
try this
if(webcombo1.FindByValue("1")!=null)
{
UltraGridRow row = webcombo1.FindByValue("1").Row;
webcombo1.SelectedRow = row;
}