Hello all,
In my application I have noticed after some developing that all the titles of my views are truncated:
I have reduced the app to the minimum (to understand the problem reason) with only one view (title Example) and it's not totally showing (even if there is enough space on the screen - chrome debugger)
could you please help me in finding the option to fix this? quite annoying behavior
main View:
Code:
Ext.define("App.view.Main", {
extend: 'Ext.tab.Panel',
config: {
tabBarPosition: 'bottom',
items: [
{
xtype: 'Example'
}
]
}
});
the specific view:
Code:
Ext.define('App.view.Example', {
extend: 'Ext.Panel',
xtype: 'Example',
config: {
title: 'Example',
iconCls: 'star',
styleHtmlContent: true,
scrollable: 'vertical',
items: {
docked: 'top',
xtype: 'toolbar',
title: 'Example'
},
html: 'Example'
}
});
in the screenshot is what i get
many thanks in advance!!! alex
titleProblem.jpg