My Stuff
Comments
-
It would be great to be able to use
-
In case it's helpful, here's a quick explanation of something I use that's similar to what you're talking about: Client Script (called 'customscript_popup') // 1 - // This function handles the popup function popup(url) { var newwindow = window.open(null,…
-
Hello, it is possible to open a popup from a button like this: form.addButton("custpage_name", "label", [url and parameters]); However, how can I open a popup from a link? My code looks like this: var suiteletUrl = nlapiResolveURL('SUITELET', 'customscript_av_deployment_popup', 'customdeploy_av_deployment_popup', false);…
-
Not sure if this helps anyone after all this time, but here's a simple solution that worked for me: function pageInit() { var tbl = document.getElementById('tbl_newrec4'); //tbl_newrec4 is the table id that encapsulates the 'new [record]' button. if(tbl != null) tbl.style.display = 'none'; } this only works in edit/create…
-
Have you considered doing an 'Item' search as opposed to a 'Transaction' search? I know it sounds similar, but it has some distinct differences. To get your Gross Margin by Customer, try an Item search (which you can reduce to any item 'Type' by specifying your criteria) then group AND sort by 'Transaction Fields...' 'Main…
-
When I created a workflow, I get the following error message when setting "Opportunity/Estimate Status" (aka entitystatus) to "Closed": "Invalid entitystatus reference key 1." What's up with this??? This may help you: http://dreamxtream.wordpress.com/2011/04/18/netsuite-transaction-status-codes/ I don't believe the status…