We change Infragistics.WebUI.UltraWebGrid.UltraWebGrid to Infragistics.Web.UI.GridControls.WebDataGrid. Now, we have problems with replacing.
How we can replace this?
e.Row.Cells.FromKey(COL_STATUS).Value.ToString()
Can you help?
How I can migrate this code?
// Bind trans type to list valueList = new Infragistics.WebUI.UltraWebGrid.ValueList(); for (int i = 0; i < SearchTypesList.Count; i++) { listItem = new Infragistics.WebUI.UltraWebGrid.ValueListItem(SearchTypesList.GetStringValueByIndex(i), (short)SearchTypesList.GetShortKeyByIndex(i));
valueList.ValueListItems.Add(listItem); }
Thanks!
Hi Anton,
You can try this : e.Row.Items.FindItemByKey( "ColumnKey").
Hope this helps