Last page update: November 23, 2011
Note
checkBoxText features:
- Type: Genro form widget
- Common attributes: check the common attributes section
- GnrDomSrc_dojo_11.checkboxtext(labels, value=None, separator=', ', **kwargs)¶
A group of checkboxes that allow to compose a string with checkbox labels.
Parameters:
- labels – a string separated by comma set of words. For every words there will be created a single checkbox
- value – the path of the checkboxtext value
- separator – the characters that separate the checkbox text
Note
example elements’ list:
- classes: GnrCustomWebPage
- components: TestHandlerFull
- webpage variables: py_requires
- widgets: formbuilder, SimpleTextarea
Code:
# -*- coding: UTF-8 -*- """checkBoxText""" class GnrCustomWebPage(object): py_requires="gnrcomponents/testhandler:TestHandlerFull" def test_1_basic(self,pane): """checkboxtext""" pane.checkBoxText('name,surname,address',value='^.foo',separator=' - ') pane.simpleTextarea(value='^.foo')