Exact Total Number at Button Tab

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

Hi,
I don’t think this is something you could/should change, but you can always easily see the number of records when its above 99, by just opening the tab, or placing your mouse over the “+99”:

Also you should eval if you really need the count right there, as usually is not set for the “All” tab in most standard views.

Hm.. I think I can tweak the CSS then.. okay let me try it, thanks