Remove the word "Total: " from column total

How can i remove the word "Total: " from column total.
Example the column total display value is “Total: 500,000”, I want to display only 500,000

You may customize the language file.

Language file is hard coded. I want to change it in some tables only.

Simply put this following code in Page_Load server event that belongs to the List Page:Language()->setPhrase(“Total”, “”);

if you use only one language, you can do it by client script in the event…
by example search (or select) the element with the class ‘ew-aggregate’ and rename/replace/erase it…
jquery or javascript will offer this feature…

mobhar wrote:

Simply put this following code in > Page_Load > server event that belongs to the List Page:
Language()->setPhrase(“Total”, “”);

This way the result like this: :500,000
How can i remove this character “:” before 500,000?

You may customize by CSS, read https://discourse.hkvstore.com/t/inspect-html-element-and-add-your-own-css-styles/6310/1