Hello everyone
UltraGridCellProxy on ultragridrowEditTemplate to edit a row but it shows me the data but won't let me to change the data in the cell and then at the database level.
I am able to do so using a separate control and by adding a bindingsource like :
Me.UltraCheckEditor1.DataBindings.Add("checkedValue", Me.resCenterSchedule, "Active"). resCenterSchedule is ultragridrowEditTemplate.
My second question is I have created a user control that contains cell proxies. I originally put this user control on the ultragridrowEditTemplate to edit the grid data. I thought this might have caused the problem. However, the probelm is still exists after i put a cellproxy directly on the ultragridrowEditTemplate.
Any help is appreciated!
The proxies should be behaving exactly as the cells in the grid would without the RowEditTemplate attached. So, for example, you might have a property set on the column (or grid) that prevents a cell from entering edit mode, or you could be cancelling the BeforeEnterEditMode event. If you could provide more information, or post a small sample project, I can look into it and see if I can suggest something.
-Matt
Hi Matt,
To simply put it, I have a grid where the following properties are changed from the default.
Updating: Allow Row deleting, Allow Row Updating
ExitEditModeOnLeave is set to true
CellClickAction is EditAndSelectText
rowselectors set to false
The updateMode is OnRowChangeOrLostFocus
Like i said in my first post, I have a user control which contains cell proxies where their columnkey is set to each column from the grid. Actually i can see the data from the selected grid on the template but it has a kind of readonly behavior. I can't change anything. There is not that much code written in the code editor. There was this events beforeRowDelete and beforeRowUpdate written but i commented out them but the problem still there.
thank you