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
150
How to reset column fixing during postback?
posted

I've trued the following code to clear the column fixing state during page postback, but it seems the grid still have somewhere remember the last fixing state.

Behaviors.ColumnFixing.ColumnSettings.Clear()

Parents
No Data
Reply
  • 33839
    Suggested Answer
    posted

    Hi eable,

    You are clearing the column settings.  These control how the columns interact with column fixing, but are not actually fixed.  You need to call

    Behaviors.ColumnFixing.FixedColumns.Clear()

    regards,

    David Young 

Children