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
3806
hiding the textcolumn header row in group column hierarchy
posted

how can hide/collapse the only a textcolumn header row when a group column hierarchy. Like I want to collapse the header row marked in RED below.

Parents
  • 17475
    Offline posted

    Hello Gajender and thank you for posting! 

    The headers of the columns are displayed in HeaderCellControl elements. In order to collapse all of them except the group headers you may set their Visibility property to Collapsed:

    <Style TargetType="igPrim:HeaderCellControl">

                        <Setter Property="Visibility" Value="Collapsed"/>

                    </Style>

    I hope this information is helpful. If you have any other questions, let me know.

Reply Children
No Data