← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 892804] [NEW] on_change for search field not working

 

Public bug reported:

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

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
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


Follow ups

References