andyhill Posted May 21, 2023 Posted May 21, 2023 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. Quote
irigsoft Posted May 22, 2023 Posted May 22, 2023 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; } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.