Skip to content

Instantly share code, notes, and snippets.

@JiBrok
Last active May 10, 2023 05:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JiBrok/a50e94a5769486508b150de31d4ac838 to your computer and use it in GitHub Desktop.
Save JiBrok/a50e94a5769486508b150de31d4ac838 to your computer and use it in GitHub Desktop.
JiBrok, message field, JavaScript Example: update message on create(Service Desk).
require(['jquery'], function($) {
function setMessage(title, body, messageType){
var jsonMessage = {}
jsonMessage.title = title
jsonMessage.body = body
jsonMessage.messageType = messageType
jsonMessage.jibrokMessageKey = true //Require for Service Desk
$('#' + CF_ID_MESSAGE).text(JSON.stringify(jsonMessage)).trigger('change')//Service Desk create request
}
//EDIT HERE
var CF_ID_MESSAGE = 'customfield_10200'
setMessage('New title',
'Loooong <br>'+
'Loooong<br>'+
'Loooong<br>'+
'message',
'error')//info, success, warning, error, change, SIMPLE_VIEW
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment