关于netsuite创建组合按钮的方法,合并按钮,netsuite API-CarlZeng
组合按钮就是netsuite中比较常用的控件,就是系统自动的将相类型功能的按钮拼接在一起,在系统的设置首选项(/app/center/userprefs.nl?sc=-29)中可以控制是否使用组合按钮。合并表格中的类似按钮Check this box to roll up similar buttons on forms.For example, checking this box rolls u…
组合按钮就是netsuite中比较常用的控件,就是系统自动的将相类型功能的按钮拼接在一起,在系统的设置首选项(/app/center/userprefs.nl?sc=-29)中可以控制是否使用组合按钮。
Check this box to roll up similar buttons on forms.
For example, checking this box rolls up all save options under the Save button. Click the arrow on the Save button to see a list of options and choose how you want to save the form.
字段ID: COMBINESIMILARBUTTONS
系统内置的api,不包含在发布的guide中。隐含API。
一下是以export按钮为例子来说明的按钮合并:
\[\['Export - CSV', "export"\],\['Export - Microsoft ® Excel', "exportXLS"\]\] 这是两个按钮, 'Export - CSV','null','export' 这个是默认的按钮显示,和它的ID系统既能关联出其方法来,具体方法我会单独写出来。 \['Export - CSV', "export"\] 是一个按钮以及点击后的方法名。
0%