Appending Data
Appending Data
I am curious if it is possible to auto append data when it is shown. For example, the data base keeps a record of times, and I want to display the timezone at the end of the data, without having to modify the data in the database.
What it shows now:
| Time|
|-----|
|18:00|
|21:00|
|16:30|
What I'd like to show
| Time |
|---------|
|18:00 CST|
|21:00 CST|
|16:30 CST|
Answers
Sure thing - use a renderer.
Allan