-
4 Sep 2009 7:35 PM #131
yes that's what i'm using.
ignoring the test case.
thx.
-
4 Sep 2009 7:51 PM #132
Thanks for the report - I'm posting a new version within the next 24 or 48 hours - this will include bug fixes and remote store support.
Thanks again,
Dan
-
6 Sep 2009 10:12 AM #133
getValues()
getValues()
I'm using getFieldValues() for now - it seems to work just fine.
-N
-
6 Sep 2009 11:20 PM #134
UPDATE 07/09/2009
*NEW* Remote compatability - you are no longer limited to a local store!
Multiple bug fixes (many browser version specific).
Updated the First Post and uploaded new attachment.
----------------------------------------------------------------------
Please see the new example page for 2 remote store demo's.
Note. There are still a few small refactorings that I would like to do, but I'm primarily concerned with getting bug reports and some feedback on the remote functionality as I work towards releasing the current features as a stable version 1 release.
Thanks,
Dan
-
7 Sep 2009 5:05 AM #135
-
10 Sep 2009 12:30 PM #136
-
10 Sep 2009 3:47 PM #137
@boonkerz - thanks for the feedback.
@mratzloff - I presume then that everything's working well for you - thanks for posting - that's good to hear.

-
11 Sep 2009 7:19 AM #138
It is, thanks. I have a couple of relatively simple suggestions for the component, though.
* Add an addItems({Array<Object>}) method that calls addItem() for each object in an array.
* When you clear the box, it should fire a removeallitems event, and there should be a config parameter for whether or not you want removeAllItems() to fire the removeitem event. Here's the problem: say I have an alert box that pops up for every deleted item: "Are you sure you want to delete this item?" The removeAllItems() method makes this alert appear for every item in the box--very inconvenient. (You might respond that I should not have an alert box appear, but the data I'm using for this is more comprehensive than simple text tags. It's mapping complex objects together, and in this case deletes should happen rarely.)Code:Ext.ux.form.SuperBoxSelect.prototype.addItems = function(items) { if (Ext.isArray(items)) { Ext.each(items, function(item) { this.addItem(item); }, this); } else { this.addItem(items); } };
* Split up the renderFieldBtns option into separate configs for each button. For a remote store with thousands of items, the drop-down button doesn't really make sense.
Thanks again!
-
11 Sep 2009 9:41 AM #139
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
11 Sep 2009 11:29 AM #140


Reply With Quote
