Search Type: Posts; User: Shashwat Rohilla
Search: Search took 0.02 seconds.
-
18 Apr 2012 11:20 PM
- Replies
- 2
- Views
- 2,853
you can do like this
.
.
.
{
xtype: 'combo'
listeners: {
'select': function(t){ alert(t.value); }
} -
29 Mar 2012 11:26 PM
- Replies
- 7
- Views
- 5,425
You can have a listener as below:-
var applicationCombo = new Ext.form.ComboBox({
store: ['Application 1', 'Application 2', 'Application 3'],
listeners: {
'select': function(combo, record,... -
28 Mar 2012 10:44 PM
- Replies
- 5
- Views
- 12,926
I'm using ExtJS 4.
This code works for me... I can switch between panel using getLayout()...
Moreover, getLayout() is returning an object in my code...
I dont know whats wrong with this one -
6 Mar 2012 11:28 PM
- Replies
- 2
- Views
- 1,823
You can try this:
var X = e.browserEvent.clientX;
var Y = e.browserEvent.clientY;
this.digitizer.menu.showAt([X, Y]);
Results 1 to 4 of 4
