Does anyone know how to fix the box size even if the length of selected bubbles are longer than the width of the box? Thanks
(I have already set resizable = false and grow = false.)
Printable View
Does anyone know how to fix the box size even if the length of selected bubbles are longer than the width of the box? Thanks
(I have already set resizable = false and grow = false.)
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