How not to display "Sum Total" on choosen list?

I have a list with a column where i show "column sum split on values". My users of my fabrik list don't need the "Sum Total" on mentioned list - is possible to make hidden:
"Total: 5229"?


I have:
Fabrik: edit element
Label: Kwota zapotrzebowania
List view settings --- Calculations
Sum the column total - Yes
Sum label: Suma
Split on: Waluta

I just need to delete (not display) the: "Total: 5229" on enclosed list (see Screen shoot)
But i need to delete it only on choosen list, not on every lists.
 

Attachments

  • Show-sum-split-on-waluta-not-show-sum-Total.png
    Show-sum-split-on-waluta-not-show-sum-Total.png
    181.2 KB · Views: 241
Try creating a custom CSS for that list template, and add:

Code:
.splittotal {
   display: none;
}

If you need to restrict it to just some lists, prepend the exact ID of the table, which you'll find if you inspect the page, it'll be something like list_10_com_fabrik_10. So to restrict that style change to just list 10 ...

PHP:
#list_10_com_fabrik_10 .splittotal {
   display: none;
}

-- hugh
 
no its a list only css declaration, it wouldnt effect a chart layout.
I'm not sure what you are asking about regarding the chart. There was a bug which was fix recently I think where the sum total was also added to things like pie charts when it shouldn't have been. If that is the issue you are referring to then an update from github should fix the problem

-Rob
 
well as I wasn't sure what you were referring to exactly to start with I'm not sure what you are experiencing!
Could you show us an example page, screen shot etc?
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top