更改netsuite表单中的选择选项

时间:2016-06-13 15:39:07

标签: javascript jquery netsuite

我的netsuite形式上有这样的东西:

enter image description here

我可以得到这样的选择值:

var origin_port = nlapiGetFieldText('custbodyorigin_port');

Bellow我有项目表,我想根据第一个表的项目原点值更改此原始端口值。我已经想出了如何获取它并使用jquery ID选择器更新它,但我想用netsuite API来做它。

有没有办法更新这个选择字段值?

这样的东西
nlapiSetFieldValue("custbodyorigin_port", "some field value", null, true);

nlapiSetFieldText("custbodyorigin_port", "some text", null, true);

但不幸的是,这对我不起作用......

添加:

项目下拉菜单中的可用选项与此正文的原始帖子选项相同。

所以我的问题 - >有没有办法改变选择的选项?我怎么能用netsuite api做到这一点?

解决!

解决方案:

nlapiSetFieldText('custbodyorigin_port', "some text here");

我在设置文本后删除了2个参数,它对我有效。

1 个答案:

答案 0 :(得分:1)

我在设置文本后删除了2个参数,它对我有效。

之前:

nlapiSetFieldText('custbodyorigin_port', "some text here",null,true);

后:

nlapiSetFieldText('custbodyorigin_port', "some text here");