new field type 'checkboxes'
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@3665 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
88b6a81b26
commit
9f7974bd0d
1 changed files with 8 additions and 0 deletions
|
@ -329,3 +329,11 @@ class ListFieldInstance(FieldInstance):
|
|||
return [self.valueFieldInstance.unmarshall(v.strip())
|
||||
for v in value if v.strip()]
|
||||
|
||||
|
||||
class CheckBoxesFieldInstance(ListFieldInstance):
|
||||
|
||||
def marshal(self, value):
|
||||
return value
|
||||
|
||||
def ummarshal(self, value):
|
||||
return value
|
||||
|
|
Loading…
Add table
Reference in a new issue