Jignesh Rathod(OpenERP) (jir-tinyerp) has assigned this bug to you for OpenERP 
GTK Client:

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-client
     Importance: Wishlist
     Assignee: OpenERP sa GTK client R&D (openerp-dev-gtk)
         Status: Confirmed

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

_______________________________________________
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