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
40
Custom Row Editing
posted

I am upgrading from UltraWebGrid to WebGrid.

With Old UtlraWebGrid i was able to do the following things

1)Merging Cells Without Sorting

2)Update Row without DatKeyFields bound to a Custom class Collection.(Now RowUpdating Event is not firing)

3)Disabling Cellwise Editing behaviour(Making Readonly Based on some condition in codebehind)

Please advise how to accomplish all these in new WebDataGrid control.

 

 

Parents
  • 49378
    posted

    Hi rajeevg77,

    Thank you for posting in the community.

    Regarding your first question, cell merging is currently available only with sorting and has been introduced in version 11.2 as CTP. A potentially possible approach in this scenario is also editing the grid rows' html on the client:

    http://blogs.infragistics.com/forums/t/56751.aspx

    Note that in order for WebDataGrid's RowUpdating event to fire, the editing core's AutoCrud property should be set to false. You may find additional useful information for setting up Manual CRUD at:

    http://blogs.infragistics.com/aspnet/media/p/218617.aspx

    Cell editing may be controlled for individual cells by handling the EnteringEditMode client-side event and cancelling for the cells you wish to remain edit only.

    Please let me know if this helps.

Reply Children