Albert Margarit (NS Eng Lead)
10/22/2018, 3:54 PMJohn Rush
10/22/2018, 3:54 PMalien4u
10/22/2018, 3:57 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 3:57 PMcreece
10/22/2018, 4:05 PMalien4u
10/22/2018, 4:40 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 4:41 PMalien4u
10/22/2018, 4:42 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 4:43 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 4:43 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 4:44 PMAlbert Margarit (NS Eng Lead)
10/22/2018, 4:44 PMfkrauthan
10/22/2018, 6:17 PMerictgrubaugh
10/22/2018, 6:20 PMerictgrubaugh
10/22/2018, 6:20 PMfkrauthan
10/22/2018, 6:22 PMerictgrubaugh
10/22/2018, 6:25 PMfkrauthan
10/22/2018, 6:25 PMfkrauthan
10/22/2018, 6:26 PM.idea/MY_PROJECT.iml
And added after the <orderEntry type="sourceFolder" forTests="false" />
line that should be in that file the following snippet:
<orderEntry type="module-library">
<library name="SuiteScript 2.0">
<CLASSES>
<root url="jar://$APPLICATION_PLUGINS_DIR$/com.netsuite.ide.webstorm.app/lib/com.netsuite.ide.webstorm.app_2018.2.0.jar!/library/SuiteScript_2_0" />
</CLASSES>
<SOURCES />
</library>
</orderEntry>
alien4u
10/22/2018, 6:32 PMfkrauthan
10/22/2018, 8:56 PMSuiteScript 2.0
with SuiteScript 1.0
and library/SuiteScript_2_0
with library/SuiteScript_1_0
. If you need both just create two orderEntry
tags below each other (at least that is how a new project is configured)erictgrubaugh
10/22/2018, 9:00 PMcreece
10/22/2018, 9:04 PMcreece
10/22/2018, 9:04 PMcreece
10/22/2018, 9:04 PMfkrauthan
10/22/2018, 9:05 PMfkrauthan
10/22/2018, 9:05 PMfkrauthan
10/22/2018, 9:05 PM/**
* Instantiate a form object (specifying the title, and whether to hide the menu)
* @restriction Server SuiteScript only
* @param {Object} config
* @param {string} config.title form title
* @param {boolean} config.hideNavBar (optional)
* @return {Form}
* @since 2015.2
*/
serverWidget.prototype.createForm = function(options) {};
Plus no descriptionsfkrauthan
10/22/2018, 9:06 PMconfig
or the jsdoc needs to replace config
with options
creece
10/22/2018, 9:06 PM