3
0
Fork 0

Add new options to README

9.0
David Coninckx 2015-03-31 12:00:46 +02:00 committed by Yannick Vaucher
parent d6ba0a680a
commit d53b4e20d2
1 changed files with 13 additions and 1 deletions

View File

@ -46,6 +46,18 @@ New options
``limit`` *int* (Default: openerp default value is ``7``)
Number of displayed record in drop-down panel
``field_color`` *string*
A string to define the field used to define color.
This option has to be used with colors.
``colors`` *dictionary*
A dictionary to link field value with a HTML color.
This option has to be used with field_color.
ir.config_parameter options
---------------------------
@ -78,7 +90,7 @@ Example
Your XML form view definition could contain::
...
<field name="partner_id" options="{'limit': 10, 'create': false, 'create_edit': false}"/>
<field name="partner_id" options="{'limit': 10, 'create': false, 'create_edit': false, 'field_color':'state', 'colors':{'active':'green'}}"/>
...
Note