← Back to team overview

openerp-community team mailing list archive

[Merge] lp:~openerp-community/openerp-web/trunk-bug-1104118-chintan into lp:openerp-web

 

Chintan Ram has proposed merging lp:~openerp-community/openerp-web/trunk-bug-1104118-chintan into lp:openerp-web.

Requested reviews:
  OpenERP R&D Web Team (openerp-dev-web)
Related bugs:
  Bug #1104118 in OpenERP Web: "[trunk/7.0]options of custom filters should be exclusive"
  https://bugs.launchpad.net/openerp-web/+bug/1104118

For more details, see:
https://code.launchpad.net/~openerp-community/openerp-web/trunk-bug-1104118-chintan/+merge/149979

Hello,

options of custom filters should be exclusive.
change both checkbox ('use by default' and 'share by all users')custom filters to radio buttons.

Thanks
 
-- 
https://code.launchpad.net/~openerp-community/openerp-web/trunk-bug-1104118-chintan/+merge/149979
Your team OpenERP Community is subscribed to branch lp:~openerp-community/openerp-web/trunk-bug-1104118-chintan.
=== modified file 'addons/web/static/src/xml/base.xml'
--- addons/web/static/src/xml/base.xml	2013-02-21 11:03:55 +0000
+++ addons/web/static/src/xml/base.xml	2013-02-22 06:46:21 +0000
@@ -1605,9 +1605,9 @@
             <form>
                 <p><input id="oe_searchview_custom_input" placeholder="Filter name"/></p>
                 <p>
-                    <input id="oe_searchview_custom_public" type="checkbox"/>
+                    <input id="oe_searchview_custom_public" type="radio" name="open"/>
                     <label for="oe_searchview_custom_public">Share with all users</label>
-                    <input id="oe_searchview_custom_default" type="checkbox"/>
+                    <input id="oe_searchview_custom_default" type="radio" name="open"/>
                     <label for="oe_searchview_custom_default">Use by default</label>
                 </p>
                 <button>Save</button>


Follow ups