0

我正在 Livecycle Designer 中创建预算模板。我有一个字段,用户可以在其中输入百分比作为数字(例如,如果要输入 75%,只需输入 75)。我想要另一个 numfield 框来获取这个数字并将其转换为 .75

我可以跨 num 个字段执行此操作,还是必须在一个框中执行此操作(用户输入 75 并自动变为 .75)。

4

1 回答 1

0

If you just want to enter integer numbers in the numeric field then that can easily be done by just taking a numeric field and then simply entering this javascript in the "exit event" of the field as:

var value1=this.rawValue;
this.rawValue="."+value1;
于 2013-05-02T18:12:34.987 回答