Tagged Questions
0
votes
1answer
147 views
Sencha panel not collapsing correclty
Inside a tabpanel i have a panel with 'collapsible' = true.
When i click on the icon to expand nothing happens. Only when i change tabs and then return to the previous one does the expand event ...
0
votes
1answer
213 views
draggable events for an extjs panel
Is there a listener for an end-of-drag event when I make a given panel "draggable"? I've found I can make a panel draggable around inside another panel by enabling the "draggable" attribute in its ...
0
votes
2answers
137 views
Adding panel again after removing it from DOM fails
I create a panel with:
oMainView = Ext.create('My.panel.view');
I store oMainView to an object to add this panel again later!
Then I add oMainView to my DOM via add():
// Div to put it in
var ...
2
votes
2answers
2k views
extjs change panel title on an event
I have a grid panel like this
Ext.define('sCon.view.SalesGrid',{
extend: 'Ext.grid.GridPanel',
title: 'Sales Data',
//other params
initComponent: function(){
...
0
votes
1answer
79 views
Extjs4.1: Reproduce form Layouts
Can anyone reproduce this type of layout in extjs4.1:
http://i.stack.imgur.com/d5ARp.png
I try to reproduce this type of combination layout but for now i just do only a row or a column but not ...
0
votes
0answers
320 views
Ext/JS 4.1 - Grid Header Scrolling
I am dynamically re configuring an Ext.grid.Panel. I am passing in a store and the column configuration via the reconfigure method. I need to be able to have the column headers stay fixed when ...
0
votes
1answer
837 views
Is calling doLayout() method a must after adding child to a parent?
In our application, there is a tabpanel in which we are adding/removing the panel dynamically.
The panels get added at the click of a menu item by the following code in menu handler:
...
0
votes
2answers
534 views
How to rotate triangle collapse icon in Ext Js panel?
Is there a way to rotate the collapse icon in a panel ( http://i.imgur.com/2ZvKd.png )? Since the direction is a bit misleading as the panel collapses in a direction opposite to that what the icon ...