> definetly connected,

No it's not, the `on_change` feature is only specified for form views —
hence bug over there, this is a feature request: on_change currently
*does not exist* for search views. It's perfectly normal that it's not
working as it's not supposed to work.

-- 
You received this bug notification because you are a member of OpenERP
sa GTK client R&D, which is a bug assignee.
https://bugs.launchpad.net/bugs/892804

Title:
  on_change should be supported on search view fields

Status in OpenERP Web:
  Confirmed
Status in OpenERP GTK Client:
  Confirmed

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/openerp-web/+bug/892804/+subscriptions

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

Reply via email to