-
14 Jul 2009 8:34 PM #91
-
14 Jul 2009 8:41 PM #92
I've just updated the first post with a new version containing:
- -Fixed a couple of bugs that occured when using setValue when the component had not been rendered (eg. hidden tab).
- -Enabled setValue to accept either an array of values or a delimited string.
-
17 Jul 2009 2:21 PM #93
This happens on a call to initButtonEvents (within onEnable). I think the following code for that should read :
Code:onEnable: function(){ Ext.ux.form.SuperBoxSelect.superclass.onEnable.call(this); this.items.each(function(item){ item.enable(); }); if(this.renderFieldBtns){ this.initButtonEvents(); } },
-
17 Jul 2009 2:43 PM #94
@radtad
You are correct - thanks for the report.
-
23 Jul 2009 1:49 AM #95
Please help me

Then I try to use transform feature in IE8 (maybe for all from IE6) for SELECT tags, I'll receive the next one:
Object doesn't support this property or method
in next construction
on ext-all.js (ExtJS 2.2)Code:var N=R.ownerDocument.createRange();
- Try to use component like this:
Code:SelectDepartmentID = new Ext.ux.form.SuperBoxSelect({ transform: 'DepartmentID', allowBlank: false, resizable: true, name: 'DepartmentID', width: 500, displayField: 'text', valueField: 'value', classField: 'cls', styleField: 'style', extraItemCls: 'x-flag', extraItemStyle: 'border-width:2px', stackItems: false });- Try to expand the SuperSelectBox on the page after rendering itHTML Code:<select id="DepartmentID" multiple size=5" onchange="frm.submit()"> <option value="value0" selected>text0</option> <option value="value1">text1</option> <!-- and more option in this place --> <option value="valueN">textN</option> </select>
- And now I receive this error.
Also reproducing then I try to select one of the items from the list
What can I do for fix this? Or this is a bug?
-
23 Jul 2009 5:32 AM #96
-
30 Jul 2009 9:44 PM #97
It would be good to add token searching config. Just like facebook.

-
30 Jul 2009 11:32 PM #98
-
3 Aug 2009 2:16 PM #99
2 small issues
2 small issues
First off, very nice widget! I found two small issues, however, that might cause others issues when first starting out:
1) You mention allowNewData in the notes for example 2, but its really allowAddNewData in the example.
2) For example 2, the store fields seem to be required to be ['id','name']. If I change the store fields 2 index to 'test' instead of 'name' and the displayField to 'test' from 'name' for the superboxselect, then type in a new value (selecting one from the pulldown works fine), then the text is not displayed.
I was able to work past those, so no worries, but just a heads up. Keep up the good work!
-
3 Aug 2009 3:13 PM #100
Yes I changed the name from a previous version - I'll update the text on the example page, Thanks!
I think you've misunderstood how it works - you can use any field names you want, but if you are changing the field names you must also change the 'newitem' callback to use the same.
Thanks for the feedback,
Dan



Reply With Quote