Hi,
I have four fields on a form. Entering all the four fields data is a must. Clicking on an Enter button nearby should display the contents of these fields in an Embedded view below in the same form.
I tried to use the below coding in the click event of the button:
@Command([FileSave]);
@SetField( “Field1”; “” );
@SetField( “Field2”;“”);
@SetField( “Field3”;“”);
@SetField( “Field4”;“”)
But first time when I enter the details and click on “Enter” button , the contents get displayed in the view. Second time when I enter, the old ones in the view gets vanished and the new data overrides the old one in the embedded view.
In this case how to make the embedded view refresh with all the contents entered in the four fields.
How to rectify this problem. Please help…