Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个与 netsuite 和 javascript 以及套件脚本相关的问题。在这个问题中,我需要一个关于如何在 netsuite 脚本中创建新按钮的提示,如果有人能用更少的代码解释,源代码会更好......:)
在Suitlet 脚本中
var form = nlapiCreateForm('Form Title'); form.addSubmitButton('Proceed');
在用户事件脚本中
function beforeLoadFunction(type, form){ form.addButton('custpage_btn_btnaction', 'Button Action'); }