*** This bug is a duplicate of bug 889741 ***
    https://bugs.launchpad.net/bugs/889741

Please remove the duplicate mark.

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to OpenERP Project Group.
https://bugs.launchpad.net/bugs/892804

Title:
  on_change for search field not working

Status in OpenERP Addons (modules):
  New

Bug description:
  the code for the view:

           <record id="view_employee_filter" model="ir.ui.view">
              <field name="name">Employees</field>
              <field name="model">hr.employee</field>
              <field name="type">search</field>
              <field name="inherit_id" ref="hr.view_employee_filter"/>
              <field name="arch" type="xml">
              <field name="name" position="before">        
                 <field name="id_search" 
on_change="search_id_change(id_search)"/>
              </field>
              <field name="parent_id" position="after">
                   <button name="attendance_action_change" states="present" 
string="Sign Out" type="object" icon="gtk-go-forward" 
context="{'type':'sign_out'}" groups="base.group_hr_user"/>
                   <button name="attendance_action_change" states="absent" 
string="Sign In" type="object" icon="gtk-go-back" context="{'type':'sign_in'}" 
groups="base.group_hr_user"/>
                   <field name="state"/>
              </field>              
              </field>
           </record>

  and the code for the controller:

      def search_id_change(self, cr, uid, ids, idsearch, context=None):
          print idsearch
          result = {}
          return result
   

  the on_change is never called.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/892804/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~c2c-oerpscenario
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~c2c-oerpscenario
More help   : https://help.launchpad.net/ListHelp

Reply via email to