Hi,
I have a treeview named Serial and it has some fields : field_1, field_2, field_3, field_4...
I customized treeview to allow user can click a field, and system will filter record by groupby based on that field
In XML file, I use widget="clickable"
<field name="field_1" widget="clickable"/>
and in .py file, I call function like :
def field_1_filter(self, cr, uid, ids, ctx, context=None):
In this function, I will call current treeview again, with context
ctx = dict(ctx, search_default_field_1=my_table_data.field_1)
Finally, here is my question :
When I call treeview again, Breadcrumbs will be added a label. And I get Breadcrumbs as below :
Serial / Serial / Serial / <so much label>
So, how can i fix it? I want to get Breadcrumbs like Serial / field_1 / field_3 (when I click field_1 and field_3 after)
Thanks your advance