12-06-2012 09:22 AM
Hi,
Do you know when the post will be available in an HTML form inside Webview?
The method "get" works, but not the "post".
Exemple of HTML loaded into the WebView:
<form action="cookies.php" method="post">
Name: <input type="text" name="fname">
Age: <input type="text" name="age">
<input type="submit">
</form>
Solved! Go to Solution.
12-06-2012 09:44 AM - edited 12-06-2012 09:45 AM
Do you need to use a WebView just to submit a form?
I just posted an example of how to do an HTTP POST in JavaScript using XMLHttpRequest. Would that work for you? You can then build the form with QML components rather than HTML.
If you really need the HTML form you could always grab the submitted form values with JavaScript and post them with XMLHttpRequest anyway - with with JavaScript in the WebView or in QML. ![]()