Last active
October 28, 2024 10:55
-
-
Save bigprof/6bceea7c63ed09f39a4b5cad5f713725 to your computer and use it in GitHub Desktop.
Prepend currency symbol to fields in the table view of an AppGini app
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add currency symbol in table view for the amount column in your AppGini app
AppGini provides a way to add currency symbols to amount columns in table view. This can be done by using the Data format tab for the concerned field. Here is an example screenshot:
The problem with this approach is that only a very few number of currency symbols are available in the drop-down list. You can add more currency symbols by editing the
C:\Program Files\AppGini\add-ons\dataFormats.cfg
file, as the context help suggests. However, this is not a very user-friendly approach.A much easier way to add currency symbols is to use the CSS
::before
pseudo-element to configure the currency symbol in thecontent
property for all amount columns. To do so, open the generatedhooks/footer-extras.php
file and add the above code at the end of the file.The first block in the above code (lines 2-8) configure the currency symbol (
₹
in this case, which is the Indian Rupee symbol) for the amount columns in the print view:The second block (lines 10-15) configures the currency symbol for the amount columns in the table view:
You can customize the currency symbol by changing the
content
property in the CSS code. Here is a list of world currency symbols for your reference.To specify a specific amount field in the above code, you can use the format
td.{tablename}-{fieldname}
. For example, if you have a table namedinvoices
and an amount field namedtotal
, you can specify the currency symbol for this field in the table view by using the CSS classtd.invoices-total
.This approach is much more user-friendly than editing the
dataFormats.cfg
file, as it allows you to specify any currency symbol you want without having to edit any files outside the hooks folder, and moreover, it affects just the display of the currency symbol without modifying the actual database query.