-
17 Apr 2008 5:23 AM #11
-
17 Apr 2008 8:29 AM #12
Works nice. But don't work correctly with paging. Values list empty when switch the pages.
-
17 Apr 2008 9:10 AM #13
Do you mean that last values are not retained when you reload page? If so, then it is correct as state management has not been activated on the demo page.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
17 Apr 2008 2:29 PM #14
Looks pretty nice ..!
but i have a case maybe for future features:
I have a combo which loads by a store (php server side) so i select multiple employees (Oh Oh, the combo has pagination cause there are about 400 employees) can it be possible to remind the selected even if they are in multiple pages or o have to create a simple combo without checkboxes ?
(i think more factible to use it with or without checkboxes just plain value selecction adition not remainder)
1.- Also kinda [2.x] Ext.ux.MultiSelectTextField (outlook/gmail style 'to' field) used to do but last code is long lost
2.- On madrabaz LOV field was too messy cause to remind fields on a grid WOW i have to make a mod in my own but was a mess of code just to make it work
Gonna give a long try on yours
By the way congrats for another cool extension
If there's anything i can do to help you just tell me with confidence
-
17 Apr 2008 4:44 PM #15
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
18 Apr 2008 7:58 AM #16
This is great! Exactly what I need in my current project. I was going to write one myself, but instead I'll use this. Please continue to develop it!
-
21 Apr 2008 5:08 AM #17
Items are erroneously checked when there are many of them indexed by id (eg. selecting an item with a value of 1 causes an unwanted selection of items with ids of 10, 11... etc.)
A quick&dirty fix:
PHP Code:@@ -208,5 +208,5 @@
this.store.clearFilter();
this.store.each(function(r) {
- var checked = !(!v.match(r.get(this.valueField)));
+ var checked = !(!v.match('(^|' + this.separator + ')' + r.get(this.valueField) + '(' + this.separator + '|$)'));
r.set(this.checkField, checked);
}, this);
-
21 Apr 2008 12:21 PM #18
Maybe quick, sure not dirty and, most important, working.
Thank you very much. Updated, uploaded.Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
21 Apr 2008 3:24 PM #19
I'm quicky add selectedField option to config, it is very convenient for me. In dropdown list it show long strings, when I checked items - it show short strings in field body.
-= miu-miu =-
Linux, Perl, GNU, Open Source, Ajax, Ubuntu 9.04
-
21 Apr 2008 4:15 PM #20Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video




Reply With Quote

