0

Livecycle Designer で予算テンプレートを作成しています。ユーザーがパーセンテージを数値として入力できるフィールドがあります (たとえば、75% を入力する場合は、75 と入力します)。別の numfield ボックスでこの数値を取得して .75 に変換したい

数値フィールド全体でこれを行うことができますか、それとも 1 つのボックスで行う必要がありますか (ユーザーが 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 に答える