我需要在 Adobe Livecycle Designer 中使用 FormCalc 或 Javascript 来创建我正在创建的交互式表单
我不是程序员,因为我需要(首选 Formcalc)或 Javascript 中的示例在 Livecycle 的脚本编辑器中输入我正在创建的交互式订单表单。
仅当单击“Add-onCheckBox1”时,我需要“ItemTotal[31]”字段来执行计算。单击 Add-onCheckBox1 后,我希望 ItemTotal[31] 字段计算 Quantity 字段乘以 300 并返回该字段的结果。以下是我尝试过但不断出现错误的方法。
if (Add-onCheckBox1 == 1) then
ItemTotal[31] == Quantity *300
I am not a programmer to I need an example in (pref. Formcalc) or Javascript to enter in the script editor of Livecycle for an interactive order form I am creating.
I need "ItemTotal[31]" field to perform a calculation only when "Add-onCheckBox1" is clicked. Once Add-onCheckBox1 is clicked I want the ItemTotal[31] field to calculate the Quantity field multiplied by 300 and return the results this field. Below is what I tried but keep getting errors.
if (Add-onCheckBox1 == 1) then
ItemTotal[31] == Quantity *300
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 JavaScript 中,它应该是这样的:
您可以将此脚本放在 Add-onCheckBox1 字段的更改事件中。
我没有机会在 Designer 中测试您的 FormCalc 脚本,但可以肯定的是作业中存在错误,它应该是:
in JavaScript it should be something like this:
You can put this script in the change event of the Add-onCheckBox1 field.
I haven't the opportunity to test your FormCalc script in Designer, but for sure there is an error in the assignment, it should be: