Hello,
This issue started when we upgraded from ExtJS 4.0.7a to 4.1.0-RC3.
I have a border layout and in the East Region I have a number of components.
The East Region starts collapsed. When I expand it, the vertical bar I clicked on to expand it is still there. (See attached image)
When I comment out the DatePicker, the vertical bar I click to expand it disappears as expected.
Here is the code to define the DatePicker:
Code:
this.datePicker = Ext.create('Ext.picker.Date', {
anchor: '100%',
itemId: 'datePicker',
listeners: {
select: function(datePicker, date, options) {
this.fireEvent('dateChanged', date);
},
scope: this
},
margin: '5 5 5 5',
value: new Date()
});
Anyone know why the vertical bar for the collapsed East region remains when it is expanded?
Thanks!
Here is the bar I expect to be hidden when the region is expanded.
DatePicker_Included.png
All I did here, was comment out the DatePicker from the items.
DatePicker_Removed.png