Jump to content

Change view of the dbgrid


Tokay

Recommended Posts

Hi,

 

You can open a ticket in support portal to add this feature,

 

But you can temporarily use this solution I think

 

1. UniServerModule -> CustomCSS:

.x-mycolumn-header-inner {
    padding: 0 !important;
}

2. UniDBGrid -> ClientEvents -> ExtEvents -> function viewready:

function viewready(sender, eOpts)
{
    sender.el.select('.x-column-header-inner').each(function(el){el.addCls('x-mycolumn-header-inner'); el.hide()});
    sender.updateLayout();
}
Link to comment
Share on other sites

  • 9 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...