大家好日子,
我真的不想问,但我迷失了,对如何解决这个问题一无所知。
我刚刚开始使用LiveCycle Designer,我没有关于该程序的任何背景知识。
我想问几个问题。
你能为条件注入Javascript代码吗? (例如,勾选复选框时,应禁用某些字段)
如果可以,我应该在哪里放置javascript代码?
我还有以下代码:
if (this.getField("Allshares").value="off")
{
this.getField("number_of_shares").readonly = true;
this.getField("amountshares").readonly =true;
this.getField("percent_account").readonly = true;
this.resetForm(["number_of_shares", "amountshares", "percent_account"]);
}
else
{
this.getField("number_of_shares").readonly =false;
this.getField("amountshares").readonly = false;
this.getField("percent_account").readonly = false;
}
这是实际的脚本,我希望勾选复选框,3个字段应该被禁用或只读。
另外,您能否建议一些可以帮助我更好地了解实时循环的网站?我知道我可能会在这里得到否定但我已经搜索了几个小时但无法找到任何解决方案。这是我现在最好的镜头。