You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using v-form package:
Everything is fine in local but server.
Provided two images after load from back end (local and live server).
First time default value wise radio button is checked but when data comes from backen in server the data type changed 1 to "1" auto!
When i change "1" to 1 using vue tools , radio then check other wise none radio is checked!
I am using v-form package:
Everything is fine in local but server.
Provided two images after load from back end (local and live server).
First time default value wise radio button is checked but when data comes from backen in server the data type changed 1 to "1" auto!
When i change "1" to 1 using vue tools , radio then check other wise none radio is checked!
<p-radio v-model.number="form.late_payment_status" :value="1" class="p-icon p-round" name="late_payment_status" color="success" > <i slot="extra" class="icon icon fa fa-check"></i> Yes </p-radio> <p-radio v-model.number="form.late_payment_status" :value="0" class="p-icon p-round" name="late_payment_status" color="success" > <i slot="extra" class="icon icon fa fa-check"></i> No </p-radio>
The text was updated successfully, but these errors were encountered: