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
840
XamDataGrid (v13.1) - Disable sorting be for individual columns? Change XamComboEditor Style to remove footer/style?
posted

Question #1

XamDataGrid - Can sorting be disabled for individual columns?

I have disabled filtering, but I do not see how to disable sorting for an individual column on a XamDataGrid in WPF v13.1

Question #2

Also, #2 question (SEE Attached Image) - How can I remove the footer/style from the XamComboEditor when used as a FieldSettings.EditorStyle within a XamDataGrid?

  • 2490
    Verified Answer
    Offline posted

    Hello Jesse,

    Thank you for the image you have sent.

    For your first question, please take a look at this forum topic:
    http://www.infragistics.com/community/forums/t/14519.aspx

    For the second one, you can use DropDownResizeMode property. By default it is set to Both, you can change it to None and it will remove the footer.
    For example if you had set it through style:

    <Style x:Key="myComboStyle" TargetType="{x:Type igEditors:XamComboEditor}">
                        <Setter Property="DropDownResizeMode" Value="None"/>
    </Style>

    If you have further questions concerning this mater, please do not hesitate to ask.