PCSpectra
3 Feb 2010, 6:59 AM
Not sure if this is a bug or I am expected to resize the toolbar explicitly, but...
When I resize the splitter window to be smaller thasn it was originally the 'New Procedure' icon button does not move in, so it becomes invisible.
The button seems to adjust accordingly when the window is resized to be larger, which is what concerns me, whether I have stumbled across an actual bug or just a mistake on my end. So please pardon me if I have posted a non-issue.
Hopefully the attachment helps in letting you see what I mean.
var toolbar = new Ext.Toolbar({
items:
[
{
xtype: 'button', text: 'Status: All', id: 'status_filter_id',
menu: { items: [menu_status] }
},
{
xtype: 'button', text: 'Region: All', id: 'region_filter_id',
menu: { items: [menu_status] }
},
{xtype: 'tbfill'},
{
text: 'New Procedure',
iconCls: 'silk-add',
listeners: {
click: function() {
var details = new Array();
initProcedureDialogAll(details, false);
}
}
}
]
});
Cheers,
Alex
When I resize the splitter window to be smaller thasn it was originally the 'New Procedure' icon button does not move in, so it becomes invisible.
The button seems to adjust accordingly when the window is resized to be larger, which is what concerns me, whether I have stumbled across an actual bug or just a mistake on my end. So please pardon me if I have posted a non-issue.
Hopefully the attachment helps in letting you see what I mean.
var toolbar = new Ext.Toolbar({
items:
[
{
xtype: 'button', text: 'Status: All', id: 'status_filter_id',
menu: { items: [menu_status] }
},
{
xtype: 'button', text: 'Region: All', id: 'region_filter_id',
menu: { items: [menu_status] }
},
{xtype: 'tbfill'},
{
text: 'New Procedure',
iconCls: 'silk-add',
listeners: {
click: function() {
var details = new Array();
initProcedureDialogAll(details, false);
}
}
}
]
});
Cheers,
Alex