Hi,
I use below code in module’s xml:
<record model="ir.action.act_window.domain" id="act_project_domain_all">
<field name="name">All</field>
<field name="sequence" eval="10"/>
<field name="domain"
eval="[]"
pyson="1"/>
<field name="count" eval="True"/>
<field name="act_window" ref="act_project_form"/>
</record>
And generate tab buttons on top of records list as below:
My problem is, the total for records that above 3 digits are showing 99+ instead of exact number of records. If I want to show exact number.. where could I make a tweak?
Bromo