[IMP]include board and column tag.

bzr revid: vme@tinyerp.com-20111111101639-yqo8hgoe9m2hco9f
This commit is contained in:
Vidhin Mehta (OpenERP) 2011-11-11 15:46:39 +05:30
commit 412fd0e8c5
1 changed files with 5 additions and 11 deletions

View File

@ -823,33 +823,27 @@ var _PROPERTIES = {
'label': ['string', 'align', 'colspan', 'groups'],
'button': ['name', 'string', 'icon', 'type', 'states', 'readonly', 'special', 'target', 'confirm', 'context', 'attrs', 'groups','colspan'],
'newline' : [],
'hpaned': ['position', 'groups'],
'vpaned': ['position', 'groups'],
'child1' : ['groups'],
'child2' : ['groups'],
'board': ['style'],
'column' : [],
'action' : ['name', 'string', 'colspan', 'groups'],
'tree' : ['string', 'colors', 'editable', 'link', 'limit', 'min_rows'],
'graph' : ['string', 'type'],
'calendar' : ['string', 'date_start', 'date_stop', 'date_delay', 'day_length', 'color', 'mode'],
'view' : [],
};
_CHILDREN = {
'form': ['notebook', 'group', 'field', 'label', 'button', 'image', 'newline', 'separator'],
'form': ['notebook', 'group', 'field', 'label', 'button','board', 'newline', 'separator'],
'tree': ['field'],
'graph': ['field'],
'calendar': ['field'],
'notebook': ['page'],
'page': ['notebook', 'group', 'field', 'label', 'button', 'image', 'newline', 'separator'],
'page': ['notebook', 'group', 'field', 'label', 'button', 'newline', 'separator'],
'group': ['field', 'label', 'button', 'separator', 'newline'],
'hpaned': ['child1', 'child2'],
'vpaned': ['child1', 'child2'],
'child1': ['action'],
'board': ['column'],
'child2': ['action'],
'action': [],
'field': ['form', 'tree', 'graph'],
'label': [],
'button' : [],
'image': [],
'newline': [],
'separator': [],
};