|
: 4 : 4 : 0 |
When Notes DB Convert to XPages, we need convert "Input Translation Formula" to "Converters", and "Input Validation Formula" to "Validators". Even Then, the execution order different from Notes.
Notes Order ReCalculate-> Input Translation Formula -> Input Validation Formula(anytime)
XPages Order Converters-> Validators-> Invoke Application phase (we cannot recalcurate before converter/validate)
So add Refresh method to NotesXSPDocument.
And when execute refresh, error message control needs to display if there are errors. As same as when we save the document with "form validation".
Then we don't need convert Input Translation Formula and Input Validation Formula.
|