Search Type: Posts; User: drian
Search: Search took 0.02 seconds.
-
18 Apr 2013 9:38 AM
Jump to post Thread: Ext.ListView and keypress-Event? by drian
- Replies
- 3
- Views
- 1,244
Is there any possibility to achieve adding keypress events on a listview?
I tried adding the listener for keypress and then relaying the event to the element but that did not work. Anyone else has... -
2 Mar 2012 11:57 PM
- Replies
- 1
- Views
- 401
Hi guys,
I'm trying to find the proper directory structure for an application that will have multiple modules. The A. structure is something standard (having the controller/model/store/view... -
29 Aug 2011 9:54 PM
- Replies
- 2
- Views
- 959
var updateUnitsButton = new Ext.Button({
tdoId: undefined,
text: 'Update',
handler: updateUnits,
width: 50,
scope: this
}); -
29 Aug 2011 9:48 PM
- Replies
- 1
- Views
- 491
You can add another property when you set the active tab.
myNextTab.myCustomProperty = X;
setActiveTab(myNextTab);
To get myCustomProperty inside myNextTab object you use... -
29 Aug 2011 9:41 PM
Jump to post Thread: Button not registering css class by drian
- Replies
- 2
- Views
- 721
there's no such thing as addStyleName. Try addClass
-
14 Aug 2011 4:21 AM
Jump to post Thread: Dataview + group by drian
- Replies
- 0
- Views
- 406
Is it possible to group items inside a dataview? If it's not, what is the best way to display records from a data store using an xtemplate and group them? I'm also interested in how to filter them.
... -
27 Jul 2011 12:48 AM
- Replies
- 2
- Views
- 1,060
I'm resurrecting this thread as I still cannot find a proper solution to this issue. Can any one give me a solution or point me into the right direction? thanks!
-
26 Jul 2011 4:31 AM
Jump to post Thread: panel with height 50 percent by drian
- Replies
- 3
- Views
- 1,231
check the flex property
-
14 Jul 2011 9:59 PM
- Replies
- 9
- Views
- 3,709
the whole ext4 community is waiting for that example =P~
-
25 Jun 2011 9:57 AM
Jump to post Thread: Ext.ux.LiveGrid by drian
- Replies
- 823
- Views
- 290,201
Here's some quick code that will do the following:
- select/deselect a row when clicking on it
- keep the previous rows selected
Add a listener to the live grid:
rowmousedown :... -
6 Jun 2011 1:34 AM
Jump to post Thread: combo with local store by drian
- Replies
- 2
- Views
- 450
look at hiddenName config
-
3 Jun 2011 10:02 AM
Jump to post Thread: submit 2 form from one button by drian
- Replies
- 5
- Views
- 1,482
hmm, why don't you make a function that wraps both forms .submit()?
function submit(){
form1.submit();
form2.submit();
} -
3 Jun 2011 8:26 AM
Jump to post Thread: Custom event propagation by drian
- Replies
- 3
- Views
- 2,020
try to add this piece of code in the configuration:
initComponent : function() {
this.addEvents({
customEvent: true
}); -
3 Jun 2011 8:14 AM
- Replies
- 5
- Views
- 866
true, that was exactly what i was thinking, make a function to check the loaded status of all stores and call it when each store is loaded.
thanks for your help -
3 Jun 2011 7:14 AM
- Replies
- 5
- Views
- 866
thanks.
Is there a possibility where i don't need to wait for the previous store to be loaded in order to trigger the next one to load?
Something similar to loading all stores and having an... -
2 Jun 2011 11:00 AM
- Replies
- 5
- Views
- 866
no one? is the method at least the proper way of doing this?
-
2 Jun 2011 6:09 AM
- Replies
- 5
- Views
- 866
Hi guys,
I need to do a block of code before all my combos are loaded and i'm using this sample code:
store1.on('load', function(){
store2.on('load', function(){ -
2 Jun 2011 5:53 AM
Jump to post Thread: Suspend/resume events help by drian
- Replies
- 4
- Views
- 1,435
Thanks for digging into the code. Suspending the events on the radio buttons solved the issue.
-
1 Jun 2011 6:48 AM
Jump to post Thread: Suspend/resume events help by drian
- Replies
- 4
- Views
- 1,435
Thanks for the quick reply!
the radiogroup
,{
xtype: 'fieldset',
width: 160,
x: 160,
items:... -
1 Jun 2011 6:33 AM
Jump to post Thread: Suspend/resume events help by drian
- Replies
- 4
- Views
- 1,435
Hi guys,
I have an event listener on "change" for a radiogroup. The radio group is inside a form, into which i load some data with setValues().
How can i suspend the change event for the... -
28 May 2011 7:10 AM
Jump to post Thread: check div empty by drian
- Replies
- 4
- Views
- 1,414
maybe check the "items" property?
-
28 May 2011 7:10 AM
- Replies
- 2
- Views
- 583
i would suggest trying to fix it with a css z-index modification on the panel that has the pdf. It's really hard to know what's wrong without a snippet of code.
-
28 May 2011 7:06 AM
Jump to post Thread: ActionColumn in grid by drian
- Replies
- 5
- Views
- 763
I used an icon class. Be aware that you'll have to specify the width in your css class because the class itself is for the image. Without a width your image won't be shown.
maybe this will help... -
28 May 2011 6:56 AM
Jump to post Thread: Combobox setValue event? by drian
- Replies
- 2
- Views
- 672
thanks for answering fay.
For example, i have a combobox that sets a base param for a grid store. My combobox is inside a form and when i use .setValues on my form I need to also trigger the... -
28 May 2011 12:17 AM
Jump to post Thread: Combobox setValue event? by drian
- Replies
- 2
- Views
- 672
Hi,
The documentation for the combobox setValue() function doesn't mention triggering an event. How can I trigger an event when i dynamically change the value of the combobox?
thanks
Results 1 to 25 of 116
