Forum Replies Created
-
AuthorPosts
-
persMemberExcellent, thank you 🙂
persMemberImplemented, 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.
persMemberOf course! .. and it works like a charm. thank you 🙂
persMemberThanks 🙂
persMember@jason_lane excellent work!
Any technical reason why you’ve disabled auto updates?
persMemberAny news on this ?
persMemberhtml.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
persMemberok, 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 🙂
-
AuthorPosts