-
12 Jun 2010 6:43 AM #201
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
13 Jun 2010 9:55 PM #202
I'm on Firefox 3. When I click the link, I get an error page stating "Invalid Attachment specified. If you followed a valid link, please notify the administrator". If I try to "Save link as...", the resulting download window refers to "attachment.php".
The link I'm using is the one included in the first post of this thread:
http://extjs.com/forum/attachment.ph...3&d=1243037046
-
13 Jun 2010 10:40 PM #203
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
13 Jun 2010 11:19 PM #204
Unfortunately I cannot even see the green "Download" header at all. Tried with both IE and Firefox, unfortunately don't have Chrome on this computer. For me, the contents of the first post of this thread look like this:
It just looks as if I somehow wasn't allowed to download attachments at all or something.Danh200 create this awesome extension.
Live example: http://technomedia.co.uk/SuperBoxSelect/examples3.html
Download: http://extjs.com/forum/attachment.ph...3&d=1243037046
Thread: http://extjs.com/forum/showthread.ph...654#post332654
Greetings,
-
13 Jun 2010 11:22 PM #205Sencha - Community Support Team
- Join Date
- Mar 2007
- Location
- The Netherlands
- Posts
- 24,251
- Vote Rating
- 40
The green 'Download' text can be found in the thread (3rd link).
I've edited the first post and corrected the download link.
-
14 Jun 2010 4:56 AM #206
@tommi,
now i know where you got that link from.
i was getting the link to the first post from post #161 of this thread:
http://www.extjs.com/forum/showthread.php?t=69090
which is actually a link to the first post of a thread in the 2.x Ux forum, which then contains the correct download link.
oh well.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
14 Jun 2010 9:43 PM #207
Got it now. Many thanks to both of you for your help!
-
17 Jun 2010 12:10 AM #208
-
21 Jun 2010 4:13 AM #209
hi all!
dan, thanx for extension.
I'm using SuperBoxCombo on ExtJs 3.2.1 and I had a problem. After loading form's values the superbox's trigger wan't work. this is because of onEnable function which calls this.initButtonEvents(), and this functions attaches one more listener to 'click' event, so the drop-down list expands and collapses immediately. I solved this by adding calling this.removeButtonEvents() function in the beginning of the initButtonEvents() function.
If you have better solutions - welcome!Code:initButtonEvents : function() { this.removeButtonEvents(); this.buttonClear.addClassOnOver('x-superboxselect-btn-over').on('click', function(e) { e.stopEvent(); if (this.disabled) { return; } this.clearValue(); this.el.focus(); }, this); this.buttonExpand.addClassOnOver('x-superboxselect-btn-over').on('click', function(e) { e.stopEvent(); if (this.disabled) { return; } if (this.isExpanded()) { this.multiSelectMode = false; } else if (this.pinList) { this.multiSelectMode = true; } this.onTriggerClick(); }, this); },
-
28 Jun 2010 12:02 AM #210Sencha Premium Member
- Join Date
- Feb 2009
- Location
- Amsterdam, The Netherlands
- Posts
- 217
- Vote Rating
- 2
Great extension!!
I'm having a bug when adding the items. It seems it doesn't trigger the resize of the parent panel.
Let me explain with some screenshots.
This is the initial case:
first.JPG
Now after I add some items the layout is broken:
2.JPG
If I resize the window then automatically it gets resized properly.
Did any of you experienced such problem?



Reply With Quote