I know how to bind a computed field to a document field. And I know how to use javascript to compute a computed field. But how do I do both?
Say my javascript in the computed field is:
@Name("[ABBREVIATE]" ,@UserName());
How do I bind that to say document1.ReqName field?
For the computed field’s Value, use Advanced data binding and select Expression Language (EL).
The expression to use is simply “document1.ReqName” (no quotes).