work in progress: prepare listings for update actions using checkboxes on list items
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2931 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
ed277de489
commit
23ec2ba0f4
1 changed files with 5 additions and 4 deletions
|
@ -84,25 +84,26 @@
|
|||
|
||||
|
||||
<metal:textline define-macro="input_textline">
|
||||
<input type="text" name="field" style="width: 450px"
|
||||
<input type="text" name="field" style="width: 450px; height: 1.5em"
|
||||
dojoType="dijit.form.ValidationTextBox"
|
||||
tal:define="width field/width|nothing"
|
||||
tal:attributes="name name; id name;
|
||||
style python:
|
||||
'width: %s' % (width and str(width)+'px' or '450px');
|
||||
('width: %s;;' % (width and str(width)+'px' or '450px')) +
|
||||
'height: 1.5em;;';
|
||||
value data/?name|string:;
|
||||
required field/required_js;" />
|
||||
</metal:textline>
|
||||
|
||||
|
||||
<metal:textline define-macro="input_date">
|
||||
<input type="text" name="field" style="width: 8em"
|
||||
<input type="text" name="field" style="width: 8em; height: 1.5em"
|
||||
dojoType="dijit.form.DateTextBox"
|
||||
tal:define="width field/width|nothing"
|
||||
tal:attributes="name name;
|
||||
value data/?name|string:;
|
||||
required field/required_js" />
|
||||
<input type="text" name="field" style="width: 6em"
|
||||
<input type="text" name="field" style="width: 6em; height: 1.5em"
|
||||
dojoType="dijit.form.TimeTextBox"
|
||||
tal:define="width field/width|nothing"
|
||||
tal:attributes="name name;
|
||||
|
|
Loading…
Add table
Reference in a new issue