I'm developing a Support app in the Ticket Editor location and I want to allow the user to alter the text they have in the comment box and replace it. I have access to comment.text in the Ticker Sidebar app, but not the Ticket Editor. Why is this?
Login to the community
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
The
comment.textproperty is actually available to the ticket editor location for replacing text. In that location, you must reference it as a property of the ticket object (ticket.comment.text). So to replace text from your ticket editor app, useclient.set('ticket.comment.text', value).