Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
175
unable to edit a wingrid using UltraGridCellProxy
posted

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!

 

 

 

 

Parents
  • 37774
    posted

    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

Reply Children