Skip to content

Instantly share code, notes, and snippets.

@thirumurthy
Last active September 10, 2018 14:43
Show Gist options
  • Save thirumurthy/8191fac0dddd32ae18f8cf58414e7574 to your computer and use it in GitHub Desktop.
Save thirumurthy/8191fac0dddd32ae18f8cf58414e7574 to your computer and use it in GitHub Desktop.
Sails framework v1.0 Ajax form post method ajax-form
<div class="container">
<ajax-form action="cloudsetupactionname" :syncing.sync="syncing" :cloud-error.sync="cloudError" @submitted="submittedForm" :handle-parsing="handleParsingForm">
<!-- write other code here -->
<p class="text-danger" v-if="cloudError==='error1'"><small>error1.</small></p>
<p class="text-danger" v-else-if="cloudError==='error2'"><small>error2.</small></p>
<ajax-button type="submit" :syncing="syncing" class="btn-dark btn-lg btn-block">Submit</ajax-button>
</ajax-form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment