Notifications
Clear all
Topic starter
How would one go about listing the amount of characters remaining in a multiline edit box? I was watching a video on youtube with a VFE form that has it built in and I would like to do that for our providers as well. Any thoughts?
Posted : March 15, 2016 5:21 am
Data Display -
{"Size: " + str(size(DOCUMENT.MULTI_LINE)) + "/2000"}
It doesn't update until the provider tabs out of the field or clicks on a different field though.
Posted : March 15, 2016 5:28 am
Topic starter
great! thank you!
Posted : March 15, 2016 5:33 am
create datadisplay with following MEL, this is number of characters left, the multiline edit box is linked to the obsterm "HPI")
{str(2000-size(obsnow("HPI")))+" left"}
Posted : March 15, 2016 5:55 am
Topic starter
even better! thanks everyone!
Posted : March 15, 2016 7:15 am