-
9 Jun 2009 4:13 PM #21
@supercharge2,
Thanks - this is the first time I've been able to see the error occur
I'll see what's in SVN now - they may have fixed it since RC2.
Thanks again.
Dan
-
10 Jun 2009 10:04 AM #22
This workaround works perfectly

I published example where the issue occured: http://million12.com/temp/superboxse...plication.html (rc2)
-
24 Jun 2009 8:48 AM #23
HI,
I attach the cleaned version: http://extjs.com/forum/showthread.ph...003#post348003
With a xtheme-gray-extend support. Your example included.
Review your first post danh200
Greetings,
-
24 Jun 2009 2:35 PM #24
Please DO NOT use or distribute that version - various things have been broken depending on the codebase you use, it seems a couple of things are broken.
[EDIT] Sorry, ignore me - it seems there are a couple of cosmetic problems only and a couple of things which I've fixed in a later unpublished version.[/EDIT]
I will definitely be merging the changes and tidying that Marc kindly made, but they need testing and fixing up first and integrating with the changes I have already made.
I'd appreciate it if you would allow me to distribute the changes in a controlled manner.
[EDIT] I should have controlled the versions of the code better - the version in my demo's and the version attached in this forum is not the most recent - I just need to get everything tested and sync'd - I've been really busy, but will do my best to release an update in the next week.[/EDIT]
Thanks.
-
27 Jun 2009 3:22 PM #25
Dunno whether I should be maintaining 2 posts really, but I've updated this component.
I've updated the main post here
-
13 Jul 2009 9:58 AM #26
I've got a problem with setting up default values in the box
Using the examples, I came up with this piece of code. I setup the default value using:
value: 'something'
But it doesn't seems to have any effect
Code:comboSpecies_store = new Ext.data.JsonStore( { storeId: 'species_store', autoDestroy: true, root: 'species', idProperty: 'code', url: 'php/jsoner/species.php', fields: [ 'code', 'name'] }); comboSpecies_store.load(); comboSpecies = new Ext.ux.form.SuperBoxSelect( { allowBlank: true, id: 'comboSpecies', fieldLabel: 'comboSpecies', name: 'comboSpecies', resizable: false, store: comboSpecies_store, mode: 'local', displayField: 'code', stackItems: true, displayFieldTpl: '{name}', valueField: 'code', value: 'ALL', navigateItemsWithTab: false });
The problem seems to come from the remote data source, because using a SimpleStore, that works just fine...
EDIT: I solved the problem. Just added:
Code:comboSpecies_store.on('load', function() {comboSpecies.setValue('ALL');});Last edited by Thomas Triplet; 13 Jul 2009 at 10:20 AM. Reason: Solved
-
13 Jul 2009 3:08 PM #27
-
24 Jul 2009 8:19 AM #28
@galdaka
Maybe you can help me.
It seems not work with Domino
He has a strange behavior.
See attached image.
thanks
-
24 Jul 2009 3:46 PM #29
-
25 Jul 2009 12:39 AM #30
You have to adapt the component to Domino. I use a plugin. There is not any bug in original component. You can view in action here: http://www.extjs.com/forum/showthrea...680#post351680
Contact me if you want profesional support.
Greetings,


Reply With Quote