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
1139
Hide the selector column
posted

I've a gird with several child grids. 

One of the grids has the details and is always expanded, and I'd like to hide the selector column.

Is there a way to do that?

Parents
No Data
Reply
  • 1139
    Suggested Answer
    posted

    Like usual, found the answer as soon as I sent the text.

     

     

     

     

     

    <ig:Band DataKeyFields="ParcelID" DataMember="DetailsSqlDataSource_DefaultView" AutoGenerateColumns="false" Key="DetailsSqlDataSource_DefaultView" showHeader="False" ItemCssClass="Textboxes" ExpansionColumnCss="displayNone" >

    Set the ExpansionColumnCss to a css class with the Display set to None.

    Hides the column.

    Now only have to find out how to remove the padding around the border.

Children