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
545
How to update part of grid when FieldLayout needs to be changed.
posted

We have a xamDataGrid that displays data in different field layout. After perform an action on an item in the grid, the item should be display in a different layout, is there a way to only update the record related to the item? Where to set new field layout to the record?

Currently we refresh the whole grid to get the new layout in AssigningFieldLayoutToItem event handler, but it’s slow. We are looking for more efficient ways.

Thanks,

Crystal.

Parents
No Data
Reply
  • 17475
    Offline posted

    Hello Crystal and thank you for posting! 

    The AssigningFieldLayoutToItem event fires when an item from the DataSource is being associated with a FieldLayout. Currently I could not think of a better solution for calling this event than the rebinding of the source. Then in the handler of the event new FieldLayout could be assigned to the grid as the AssigningFieldLayoutToItem occurs before the InitializeRecord event.

Children