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
3166
Fix Record Selector
posted

How do I fix the Record Selector so that it does not scroll out of view during horizontal scrolling ? 

Parents
No Data
Reply
  • 28407
    Verified Answer
    posted

    HI,

      You could set the XamDataGrid's FieldSettings AllowFixing Property and this would cause the record selector to be fixed and remain in view as you scroll horizontally.

     Here is a code snippet:

      <Custom:XamDataGrid.FieldSettings>  
                   <Custom:FieldSettings AllowFixing="NearOrFar"/>

        </Custom:XamDataGrid.FieldSettings>

    WpfApplication277rs.zip
Children