We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ba1c9 commit c39b19aCopy full SHA for c39b19a
Client-Side Components/UI Pages/Edit Last WorkNotes/Client.js
@@ -0,0 +1,12 @@
1
+function callme() {
2
+ var dialog = new GlideModal("edit_comment_inc");
3
+
4
+ //Set the dialog title
5
+ dialog.setTitle('Edit last comment');
6
+ dialog.setPreference('incid', g_form.getUniqueValue());
7
+ //Set the dialog width
8
+ dialog.setWidth(550);
9
10
+ //Display the modal
11
+ dialog.render();
12
+}
0 commit comments