I have a class:
class activeuser(osv.osv):
_name = activeuser
_columns = {'name':fields.char('Name', size=128),
'description_about':fields.text('About Name'), } activeuser()
I want get every word of 'name' field into new fields that I will create, lets say:
'first_word''second_word''third_word''fourth_word'How to do that?
Can Create Three fields First Name, Last Name, Middle Name in the fourth fields Complete Name con-cat all the three fields using Functional Fields or on_change event
can you explain more spesific?