I am migrating UltraGridRow to GridRecord -> all works except the cell level Editing capability.
Can't seem to find a appropriate property to set it at cell level. Please help.
foreach (UltraGridRow ugr in dataUwg.Rows)
{
canEdit = true; //active can be null, Y or N.
Int32.TryParse(2, out lineId);
ugr.Items.FindItemByKey("globalUpdate").AllowEditing = (lineId <= 0 || !canEdit ? AllowEditing.No : AllowEditing.Yes);
}
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.
Hello,
In WebDataGrid you could achieve cell level editing by handling of enteringEditMode client event in order to cancel or not entering of edit mode of particular cell. On the following forum thread this questions was discussed in details, please note the first post of Alexander Kartavov:
http://es.infragistics.com/community/forums/t/37628.aspx
Please let me now if you have any further questions.