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
465
How to hide FixedRowSeparator?
posted

Hello.  I was wondering how is it possible to remove or hide the FixedRowSeparator on a XAMWEBGRID v9.2 when fixing columns to the left using IsFixed="Left".  This is a hierarchical grid with 2 levels of sub rows.  The IsFixed works fine but would like to hide the separator bar.

I have tried using the FixedRowSeparatorStyle but to no avail.  I tried setting opacity to 0 width to 0, height to 0, stroke thickness to 0.  But nothing seems to do it.

Thanks,

John

Parents
  • 40030
    Offline posted

    Hi John, 

    So the FixedRowSeparatorStyle is actually for the the border that separates the AddNewRow, FilterRow, etc, from the normal data rows. 

    I believe you want to modify the FilxedBorderCellControl, which is the vertical bar that appears next to the fixed columns:

    <Style TargetType="igPrim:FixedRowSeparator">

                <Setter Property="Opacity" Value="0"/>

            </Style>

    Off of FixedColumnSettings, there are multiple properties: FixedBorderStyle, FixedBorderHeaderStyle, FixedBorderFooterStyle

    Hope this helps, 

    -SteveZ

Reply Children