Skip to content Skip to sidebar Skip to footer

How To Stop GWTBootstrap3 From Refreshing And Loosing My Input And Returning An Error Code

I am trying to use GWTootstrap3 with the following html:
Bootstrap Image Previe</div>

<h2 id="solution_1">Solution 1:

</h2>
<div class="answer-desc"><p>Because you are using a form the page is refreshing.</p>
<p>You can just do this: </p>
<p><strong>1)</strong> switch the <code><form></code> to <code><div></code> </p>
<p><strong>2)</strong> remove the <code>type="submit"</code> from the button</p>
<p>That

Solution 2:

GwtBootstrap Form widget creates a bona fide <form> tag which attempts to submit your form data to the form target upon pressing the submit button or ENTER. To prevent this behavior, indicate so to the form widget:

<b:Form submitOnEnter="false">

Post a Comment for "How To Stop GWTBootstrap3 From Refreshing And Loosing My Input And Returning An Error Code"