I've got it coded in our app and it works great! Thanks!
However, the default trigger icon/button displays at the left of the CB along with the superbox's down arrow at the right.
How do I fix this?
Thanks in advance!
I've got it coded in our app and it works great! Thanks!
However, the default trigger icon/button displays at the left of the CB along with the superbox's down arrow at the right.
How do I fix this?
Thanks in advance!
We figured it out; we had code to override the CombBox when 'hideTrigger: true' so IE will not show it. If I comment out this code the default trigger icon goes away. We'll have to figure out another workaround for hiding the trigger icon.
PHP Code:
Ext.form.TriggerField.override({
afterRender: function(){
Ext.form.TriggerField.superclass.afterRender.call(this);
var y;
if(Ext.isIE && !this.hideTrigger && this.el.getY() != (y = this.trigger.getY())){
this.el.position();
this.el.setY(y);
}
}
});
Hey guys ..
sort is not working on display field .. any suggestions ?
Regards
Armando
Hi.
I am new to GXT and need a component just like this one, but this is only for JS as I see it.
Anyone know of a way to get it in GXT?
I made my own GWT component, but this looks soooo much better!
Thanks.
Lars
Hi,
I use the Box with a store in my Project like this
that works fine. But after submitting the form with the Box I can't user it a second time. The I Open a form with a Superbox I only see three times the Displayfield. But no Dropdown.Code:new Ext.ux.form.SuperBoxSelect({ allowBlank:false, msgTarget: 'title', id:'selector5', xtype:'superboxselect', fieldLabel: 'Kategorie', resizable: true, hiddenName : 'kategorie', width:200, store: states3, mode: 'local', displayField: 'name', displayFieldTpl: '{name} ({id})', valueField: 'id', allowBlank:true, navigateItemsWithTab: false, //value : ['AL', 'AZ'] })
I use Ext. 3.1.1
Thank for you help
Jens
Hi
I'm trying to update this "Tag" examlpe to do my work. But my tagStore always return error .
Anything I can do to get error exception for the store ? Thank you .
http://technomedia.co.uk/SuperBoxSelect/examples3.html
my tagStore :
var tagStore = new Ext.data.JsonStore({
proxy: new Ext.data.HttpProxy({
url: 'WebService.asmx/getTest',
headers: {
'Content-type': 'application/json'
}
}),
root: 'd',
id: 'Value',
fields: ['Value', 'Name', 'tp']
});
Hi
nice work. But I need this in Ext4. Is there a Ext4 version of this plugin?
Cheers Markus
I am also looking for Ext 4 version for the same.
is it available ?
Hello:
here is our modify version base on ExtJS 3.3.3 to support
1. swap the order of selected items
2. selected number limitation
3. config to customize SuperBoxSelectItem
hope it can help your SuperBoxSelect to be more powerful.
B.R.
Lance Kuo
lancekuo@qnap.com.tw