Categories | Question details Back To List | ||
dhtmlxLayout - Status bar height - Paging controls. I was trying to include a paging bar with my grid inside of a layout control. So I found the following in the knowledgebase. It looks fine when I don't apply a skin to the paging area. But when I apply the bricks skin, the status bar only shows the top half of my pager controls because the status bar is not tall enough. Is there a way to adjust the height of the status bar? http://www.dhtmlx.com/docs/products/kb/index.shtml?cat=search&page=1&q=8623&ssr=yes&s=status%20bar Answer posted by Alex (support) on Apr 06, 2009 05:30 You can try to modify the dhtmlxwindow_sb.js: try to locate win._sbH = (_isIE?19:18); and replace these lines is with win._sbH = (_isIE?27:26); win._sbB = (_isIE?28:27); |