34
Points
Questions
0
Answers
4
-
Late to the party but…. there is this Chrome plugin which allows you to see the “scripted records” list from the sames record screen.
NetSuite Scripted Records
- 1199 views
- 3 answers
- 2 votes
-
I’ve seen that before when using URLs. The entity c refers to a &c=x in the string.
- 2661 views
- 2 answers
- -1 votes
-
require(["N/ui/message"], function(message_1){
var messagePrompt = message_1.create({
title: "Foo",
message: "BAR",
duration: 5000,
type: message_1.Type.ERROR });
messagePrompt.show(); });
Available types:
Type { CONFIRMATION, // A green background with a checkmark icon. INFORMATION, // A blue background with an Information icon. WARNING, // A yellow background with a Warning icon. ERROR, // A red background with an X icon. }- 2096 views
- 2 answers
- -2 votes
-
Have you tried?
var myData = {foo:”bar”};
warning.defaultValue = “<script>NS.jQuery(function($){ require([‘/SuiteScripts/pathToClientScript/myClientScript’], function(a){ a.showMessage(‘” + JSON.stringify(myData) + “‘);});});</script>”;This answer accepted by mreser. on September 16, 2019 Earned 15 points.
- 4620 views
- 4 answers
- 0 votes