Shouldn't these spinners be disabled as well? Also the showSpinButton="false" doesn't work for the Vue component.
Thanks
Hi Wei Cheng,
Greetings from Syncfusion support.
We have validated the reported issue in our end with provided details . And we suggest you to provide the value for showSpinButton through a variable (‘spin’ in the below example) instead of providing it directly .
[App.vue]
|
<template> <ejs-numerictextbox :showSpinButton='spin'></ejs-numerictextbox>
</template>
<script> import Vue from "vue"; import { NumericTextBoxPlugin } from "@syncfusion/ej2-vue-inputs";
Vue.use(NumericTextBoxPlugin);
export default { name: "App", components: {NumericTextBoxPlugin}, data() { return { spin: false, }; } } </script>
|
Sample link : https://www.syncfusion.com/downloads/support/forum/169774/ze/quickstart139714852
Kindly revert us if you have any concerns in it.
Thanks,
Deepak R.
Hi, Deepak:
Thanks for getting back to me, the code example you provided worked.
At first, the updated code of mine didn't behave the same way, then I did a npm cache clean, also cleared browser cache, it started working.
Regards,
Wei
|
<template>
<ejs-numerictextbox :showSpinButton='spin' :enabled='enable' ></ejs-numerictextbox>
</template>
<script>
import Vue from "vue";
import { NumericTextBoxPlugin } from "@syncfusion/ej2-vue-inputs";
Vue.use(NumericTextBoxPlugin);
export default {
name: "App",
components: {NumericTextBoxPlugin},
data() {
return {
spin: true,
enable: false
};
}
}
</script>
|