I can set the tooltip, but I cannot setvalue. The style is edit, not hidden... Any ideas as to why this is happening?
Can you provide more detail?
My understanding is that you are doing cell.SetValue() but the value is not being pushed down to the data source? What is the grid update mode set to?
grid.Rows[i].Cells[SERVICE_ID].SetValue(item.ID, false); //Set the service ID value for later lookup.
grid.Rows[i].Cells[SERVICE_NAME].SetValue(item.ServiceName, false);
I can setvalue for service name, but not for serviceID. The grid is editable.
I look through the properties and see the "originalvalue" now holds my value. However, it's never reflected on the grid or in the actual value property.
Please help, I am about to pull my hair out.