문제

In form I have button, i want display field "Price" after button "Save" click, it's possible ? Or can be solution to add to field HTML atribute "readonly".

도움이 되었습니까?

해결책

In your form, enable option "Generate HTML for all fields" (check the image below):

enter image description here

It will generate html for all fields, even for hidden ones.

Add field price to the form and hide id by paragraph hide formulas according to your requirements.

When you have saved your form, add a flag to your document, that turns the hide formula for price field to false, and invoke the command:

@Command( [RefreshHideFormulas] );

It will make your price field visible.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top