Skip to content

Commit c35f40c

Browse files
committed
docs: add validation submit example to readme
1 parent f4d8602 commit c35f40c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ These grant access to some of the backend functions — use at your own risk.
142142
More complicated examples in examples folder. run `npm run serve` to view.
143143

144144
```
145-
<form id="form" x-data x-validate @submit="$validate.submit">
145+
<form id="form" x-data x-validate.validate-on-submit action="/api/end-point" method="post">
146146
<p><em>* required</em></p>
147147
<div>
148148
<label for="name">Your Name *</label>
@@ -178,6 +178,13 @@ More complicated examples in examples folder. run `npm run serve` to view.
178178
179179
```
180180

181+
The above example will validate using x-validate prior to submitting. If you need to submit using javascript, then you can use alpine for this as such:
182+
183+
```
184+
<form id="form" x-data x-validate.validate-on-submit
185+
@submit.prevent="if ($validate.isComplete('form')) yourPostFormFunctionHere($validate.value('form'))" >
186+
```
187+
181188
### Example of more elaborate error message styling
182189

183190
```

0 commit comments

Comments
 (0)