Hello and welcome back... :)
Hope by this time you must have successfully posted a form and save the data in database...
Now let move ahead and GET those data and display in our web page.
To fetch data from Servoy one must have to do a GET request through HTTP.
Let us add a HTML Button to send the request. We can request for a particular record, bunch of records or all the records. So let us put a text box as well to to enter the ID to be fetched.Hope by this time you must have successfully posted a form and save the data in database...
Now let move ahead and GET those data and display in our web page.
To fetch data from Servoy one must have to do a GET request through HTTP.
<label for="name">Enter ID to get the value:<br></label>
<input name="elementId" type="text" /><br><br>
<input type="button" value="GET" onclick="getServoyDataInForm();"/>
Definition of getServoyDataInForm()...