lotus domino - xpages dijit.form.checkbox multiple values -
using xpages on domino 8.5.3 server. can djcheckbox use muiltiple value field similar checkboxgroup ? if so, possible supply code snippet.
thanks
dijit.form.checkbox can deal one value , that's true djcheckbox it's based on dijit.form.checkbox.
you combine several djcheckbox controls , let checkboxgroup. bind every djcheckbox viewscope variable initialized document item , write values @ document save.
here example ui similarity checkboxgroup:
<fieldset class="xspcheckbox"> <table> <tbody> <tr> <td> <xe:djcheckbox label="abcdefg" id="djcheckbox4" value="#{viewscope.abcdefg}"> </xe:djcheckbox> </td> <td> <xe:djcheckbox label="hijklmno" id="djcheckbox5" value="#{viewscope.hijklmno}"> </xe:djcheckbox> </td> <td> <xe:djcheckbox label="pqrstuvwxyz" id="djcheckbox6" value="#{viewscope.pqrstuvwxyz}"> </xe:djcheckbox> </td> </tr> </tbody> </table> </fieldset>
i not sure though what's reason question , if it's worth effort.
Comments
Post a Comment