Quote:
Q2:
I would like to capture an event, when the user left a control for VAT (lost focus - or something) - so I could call online service and a.) check the number and b.) display it in a window (like please wait).... is this possible?
This is how you can identify the situation when field lose the focus...
Code:
<field name="name" colspan="4" on_change="onchange_name(name)"/>
Code:
def onchange_name(self, cr, uid, ids, context={}):
result = None
#TODO : OpenERP Business Process
print "onchange method call when name field lose focus"
return result
--
Regards,
rch