Search the Community
Showing results for tags 'size'.
-
Does anyone knows what is the perfect configuration size for thermal ticket paper and how to set the height limit to printing area!? Please help!
-
- report builder
- reportbuilder
-
(and 3 more)
Tagged with:
-
Is it possible to increase the size of IconCls in mobile?
-
Hi guys, When trying to change the height of the title in the panel using event "render" of panel function render(sender, eOpts) { var header = sender.header; header.setHeight(5); } A space the size of the removed height of the title is added to the bottom of the panel The title of the text also does not appear. But I can solve manipulating the CSS class .x-panel-header-text-container-default But the question of spacing can not solve. How to solve this problem? TitlePanel.rar
-
I have a UniHTMLMemo with ShowToolBar set to True. When I click the grow text button the text size increases but it stops increasing at certain point (my guess probably due to a set maximum size). I need to increase the text size beyond the maximum size value. How can I do this? Delphi XE2 UniGUI Complete Professional: 1.10.0.1466
- 2 replies
-
- unihtmlmemo
- grow
- (and 5 more)
-
How to leave the TUnimEdit bigger, because in the designe they are even getting a good size, but when it executes it is in fixed size. And I've done via CSS that works perfectly the other details, but the size of the field is not getting good. Does anyone know of any way to increase? My CSS: .AbasteceEdits { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; border: none; font: normal normal bold 17px/normal "Trebuchet MS", Helvetica, sans-serif; color: rgb(0, 0, 10); text-align: center; text-indent: 2px; -o-text-overflow: ellipsis; text-overflow: ellipsis; letter-spacing: -1px; white-space: pre-line; background: #afd1ca; text-shadow: 4px 4px 6px rgba(0,0,0,0.5) ; }
-
Hi guys, The UniGui already has support for TabBar configuration in TabPanel? I'm trying to change the height of the tabs in PageControl the following manner PageControl -> ClientEvents -> UniEvents -> [Ext.tab.Panel [tabPanel]] -> tabPanel.beforeInit tabBar: { height: 25, defaults: { height: 20 } } But all my attempts, I could not change the size of the tabs. I also tried the following methods. config.tabBar: { height: 25, defaults: { height: 20 } } --------------------------------- config.tabBar: { height: 25 } --------------------------------- config.tabBarHeight = 25 But also did not work. Is there any other way to change TabBar settings?