Jump to content

Recommended Posts

Posted
UniDBGrid1.HeaderTitle:= '';

UniDBGrid1.Options:= [dgColumnResize,
                      dgColLines,
                      dgRowLines,
                      dgAutoRefreshRow
                     ];

Can someone please show me how to Hide the Grid Header - Thanks in advance.

Interesting find, I just added a ToolBar and the blank header disappeared.

Posted
7 hours ago, andyhill said:
UniDBGrid1.HeaderTitle:= '';

UniDBGrid1.Options:= [dgColumnResize,
                      dgColLines,
                      dgRowLines,
                      dgAutoRefreshRow
                     ];

Can someone please show me how to Hide the Grid Header - Thanks in advance.

Interesting find, I just added a ToolBar and the blank header disappeared.

Hello, I use CSS to hide header 

/*Hide Header*/
    .x-grid-header-ct {
            visibility: hidden !important; 
        height: 0px !important; 
    }


/*Hide bottom panel - page buttons */
    .x-grid-paging-toolbar {
    /*            visibility: hidden !important; */
        height: 0px !important; 
    }
 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...