When I give collapsible : truein the panel, a resettable icon (up arrow) is displayed on the right side. How can I show this on the left side of the panel?
Ext.create('Ext.panel.Panel', {
title: 'New Section',
height: 275,
width: 530,
margin: 3,
collapsible : true
});
after that I dynamically edit the name using the method setTitle(text). The name will be changed, but the collector will not appear. Does anyone know what is going on here?
Thanks in advance
source
share