include the backslash(‘\’) in the string.

form: {

ui_obj: serverWidget.createForm({

title: ‘Print\\Export Labels’

})

}

By using \\, escaping the backslash character itself, so it will be included in the string as a literal backslash. This should give the desired output: “Print\Export Labels”.

Leave a comment

Your email address will not be published. Required fields are marked *