What’s up, everyone. I’m proud to say that I’m finally getting the hang of this stuff. Thank you for the help so far. I’ve even started contributing some of what I’ve learned to the community. It’s good to give back.
Here’s my latest issue:
I have a dynamic string, created from several fields in a dataset. Specific users submit changes, which update each part of the string. But I’d like the last variable in the string to be a different color. I’ve tried a few solutions I found in this forum, but none have worked.
Here’s the line of code:
$w("#esdateandtime01").text = items[0].month + " " + items[0].day + ", " + items[0].hr + ":" + items[0].mn + " " + items[0].ampm + " - " + items[0].zone;
I tried using . . . , but that did not work. I’d like to stay away from DOM changes, too, as I’m hoping to keep my theme intact.
Are there any other solutions? I’m hoping for something inline.