2014-10-26 2:15 GMT+01:00 Luis Daniel <[email protected]>: > Hi, I'm looking for a way to show in a Tree View some data stored in a > simple python list of tuples, but a only have found how to insert data from > SQL queries or implementing the table_query method.... > so that, I don't know actually a way to insert my data in a tree view > (fields.One2Many) and to show that field in a view form. > > What can I do, to accomplish with this work?
You should create a new class that inherits ModelStorage and overrides at least the following methods: - search() - read() You may also consider implementing: - create() - write() - delete() -- Albert Cervera i Areny Tel. 93 553 18 03 @albertnan www.NaN-tic.com
