My Stuff
Comments
-
I had to do something similar on the entry form on view mode, Ive created an inline html field on the form itself and added <script> tag on to the default value ** formula checkbox must be off* and just did jQuery(window).load(function(){}); and put all the dom changing on to it.if you want the dom to change only on view…
-
So after trying multiple things and finally gave and opened a case with netsuite to see if this was possible, they replied with Currently, nlapiRequestURL only respects the header with a content types "application/json" and "application/soap xml". so header content-type cant be set to multipart/form-data , which probably…
-
thank you guys for the answer , so tried different things and got it to work with var testStr = ''show this!'' myForm.addButton('custpage_mybtn' , 'do stuff', 'testingFunc(' +testStr+')'); thank you michoel it does seem like i can pass objects but only with the ' in place for " var testStr = '{'id': 'myid'}';…
-
i cant seem to pass strings either var testStr = "show this!"; myForm.addButton('custpage_mybtn', 'do stuff', 'testingFunc(' + testStr + ')' ); gives me uncaught syntaxError i am fairly new to netsuite and might be missing some sort of syntax to pass the string in to button but not entirely sure. I have seen a forum post…
-
thank you guys, i think ill do what mvldesign suggest by writing the suitelet i really thought adding featured items on shopping cart wouldve been easier to implement...
-
thank you for the reply!! Ive tried the template config, and combiner config. it seems it did not have any effect. I do see <div class="row-fluid" data-type="related-items-placeholder"></div> <div class="row-fluid" data-type="correlated-items-placeholder"></div> in the shopping cart template but…
-
var itemID = <%= getCurrentAttribute('item' , 'custitem_digital_version' %>; returns the correct id number for the digital item what i need to do is pass this id to <%= getAttribute('item' , itemID , 'displayname' %> which does not work, i did some digging around and found that all server side tags are all pre…
-
var digitalItemId = <%=getCurrentAttribute('item', 'custitem_digital_version')%> Var digitalDispName = <%=getAttribute('item', Number(digitalItemId), 'displayname')%> doesnt seem to work also tried var altItemID = <%=getCurrentAttribute('item', 'custitem_digital_version')%>; altItemID =…
-
repo seems like its down i cannot connect to either one.
-
i wanted to have a scheduled script that runs automatically everyday, which will upload files that are no longer in use. the box suiteapp seems like it just attaches the box folder to the record on the front end and user has to upload the file manually.
-
thank you for the response! im fairly new to the file side of the http calls, so forgive me. Im trying to upload to BOX. Im not quite sure what the payload BOX uses, I took a look at the document here https://docs.box.com/reference#upload-a-file On the ClientSide i was able to upload using formData (client chooses the file…
-
im in production
-
I did see the answer from mr.westlake a while ago, but since i was able to use client script back then, i ended up just using the formdata with ajax call Ive asked here again since i wasnt able to upload following Mr.westlake's viable code sample and thought maybe suitescript 2.0 has something that might help…