Change data in Data Table from Instance Definition
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 08:24 PM
I have a field Total after calculating data in DB, I want to change it to X if less than 100 and O if greater than 100.
Can it be achieved by editing HTML/CSS or server script?
Thanks.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2024 09:09 AM
HI Chronos,
I assume you are doing it for the Service portal, apply this in your HTML in the row of total
<td ng-if="total>100">O</td> //replace total with object where you have stored the value
<td ng-if="total<100">X</td>