Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Inline documentation #1317
    pers
    Member

    Excellent, thank you 🙂

    in reply to: Bug or typo? #643
    pers
    Member

    Implemented, thanks 🙂

    Is it possible to have nested condtionals ? What I’d really like to have is “Custom text” in the select box, and if you choose that, you get a text field.

    in reply to: Bug or typo? #641
    pers
    Member

    Of course! .. and it works like a charm. thank you 🙂

    in reply to: extending / adding fields #444
    pers
    Member

    Thanks 🙂

    in reply to: media upload #443
    pers
    Member

    @jason_lane excellent work!

    Any technical reason why you’ve disabled auto updates?

    in reply to: extending / adding fields #441
    pers
    Member

    Any news on this ?

    in reply to: initial $value not set in radio.php #224
    pers
    Member

    html.php has the same problem

    piklist('field', array(
    'type' => 'html'
    ,'field' => 'ingress'
    ,'value' => __('Lorem ipsum dolor sit amet, consectetur adipiscing elit.')
    ));

    The piklist above produces the correct html tags, but the content is blank

    in reply to: select multiple="multiple" #198
    pers
    Member

    ok, found a partly answer .. just add the attribute:

    piklist('field', array(
    'type' => 'select'
    ,'field' => 'select'
    ,'label' => 'Select'
    ,'value' => 'third'
    ,'attributes' => array(
    'multiple' => 'multiple'
    )
    ,'choices' => array(
    'first' => 'First Choice'
    ,'second' => 'Second Choice'
    ,'third' => 'Third Choice'
    )
    ));

    partly, since piklist doesn’t save multiple selects and select.php in /piklist/parts/fields/ doesn’t handle multiple defaults (eg value => array())

    Anyway, this is easily fixed and as I said above .. I <3 piklist 🙂

Viewing 8 posts - 1 through 8 (of 8 total)