1. #11
    Sencha User
    Join Date
    Mar 2007
    Posts
    452
    Vote Rating
    1
    JorisA is on a distinguished road

      0  

    Default


    Quote Originally Posted by jsakalos View Post
    Backup DNS server hadn't correct record - it's corrected now.
    Thnx works fine now
    Great extension!

  2. #12
    Sencha User
    Join Date
    Dec 2007
    Posts
    4
    Vote Rating
    0
    smagen is on a distinguished road

      0  

    Default


    Works nice. But don't work correctly with paging. Values list empty when switch the pages.

  3. #13
    Sencha - Support Team jsakalos's Avatar
    Join Date
    Apr 2007
    Location
    Slovakia
    Posts
    26,169
    Vote Rating
    82
    jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold

      0  

    Default


    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.

  4. #14
    Sencha User cmendez21's Avatar
    Join Date
    Jun 2007
    Location
    Mexico D.F.
    Posts
    475
    Vote Rating
    0
    cmendez21 is on a distinguished road

      0  

    Default


    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

  5. #15
    Sencha - Support Team jsakalos's Avatar
    Join Date
    Apr 2007
    Location
    Slovakia
    Posts
    26,169
    Vote Rating
    82
    jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold

      0  

    Default


    Quote Originally Posted by cmendez21 View Post
    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)
    LovCombo won't work with pagination - it uses store to keep checked items and each paging erases the original data. That would require different approach.

  6. #16
    Ext User nkohari's Avatar
    Join Date
    Sep 2007
    Posts
    10
    Vote Rating
    0
    nkohari is on a distinguished road

      0  

    Default


    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!

  7. #17
    Ext User
    Join Date
    Mar 2008
    Location
    Poland
    Posts
    17
    Vote Rating
    0
    mholyszko is on a distinguished road

      0  

    Default


    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,+208,@@
                     
    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.checkFieldchecked);
                     }, 
    this); 

  8. #18
    Sencha - Support Team jsakalos's Avatar
    Join Date
    Apr 2007
    Location
    Slovakia
    Posts
    26,169
    Vote Rating
    82
    jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold

      0  

    Default


    Maybe quick, sure not dirty and, most important, working.

    Thank you very much. Updated, uploaded.

  9. #19
    Ext User nassaja-rus's Avatar
    Join Date
    Mar 2007
    Location
    Russia
    Posts
    314
    Vote Rating
    0
    nassaja-rus is on a distinguished road

      0  

    Default


    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

  10. #20
    Sencha - Support Team jsakalos's Avatar
    Join Date
    Apr 2007
    Location
    Slovakia
    Posts
    26,169
    Vote Rating
    82
    jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold jsakalos is a splendid one to behold

      0  

    Default


    Quote Originally Posted by nassaja-rus View Post
    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.
    Can you rephrase it or post some pictures? I don't get it...