Vue UI Components Documentation
Vue FormattedInput Component
The FormattedInput component for Vue represents an input widget for entering numbers in the binary, octal, decimal or hexadecimal numeral systems.
Prerequisites
Refer to Vue Getting Started before you start with this help topic.
Configuration
After you have created your App.vue file, here is how you should structure it:
The FormattedInput component for Vue requires the following import:
import JqxFormattedInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxformattedinput.vue";
Add the jqxFormattedInput component to the components section of the the Vue class:
components: { JqxFormattedInput },
Template
The App.vue has a <template>
structural tag where we determine the application structure.
There we will also set the tags for the new components - <JqxFormattedInput/>
<template> <JqxFormattedInput :width="250" :height="25" :radix="radix" :value="value" :spinButtons="true" :dropDown="true"> </JqxFormattedInput></template>
Properties
The properties of the <JqxFormattedInput/> component are defined in the data
member of the Vue class.
We should put them in the return object of the data function:
data: function () { return { radix: 'decimal', value: 15 }}
Events
The events in Vue are set as an attribute with @ prefix, for example:
<JqxFormattedInput @open="onOpen()" :width="250" :height="25" :radix="radix" :value="value" :spinButtons="true" :dropDown="true"></JqxFormattedInput>
All events that are bound to a component are implemented in the methods
member of the Vue class.
methods: { onOpen: function () { // Do something... }}
Methods
To use a component's method we should have its reference. In Vue we refer to a component by the special $refs
property.
Before that we need to add the desired name reference to that component:
<JqxFormattedInput ref="formattedinput"></JqxFormattedInput>
Here how you can use a component's method:
this.$refs.formattedinput.selectFirst();
methods: { // Add here all used callbacks and/or events onOpen: function () { // Do something... this.$refs.formattedinput.selectFirst(); }}
If we want to add additional methods we should also implement them in the methods
member.
In case we need to do some precalculation or something else before the components are rendered, we should use the beforeCreate
member.
It depends on the case.
If you have followed the above steps, you App.vue file would look like this:
App.vue:
<template> <JqxFormattedInput ref="formattedinput" @open="onOpen()" :width="250" :height="25" :radix="radix" :value="value" :spinButtons="true" :dropDown="true"> </JqxFormattedInput></template> <script> // Import the components that will be used import JqxFormattedInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxformattedinput.vue"; export default { components: { // Adding imported widgets here JqxFormattedInput }, data: function () { // Define properties which will use in the widget return { radix: 'decimal', value: 15 } }, beforeCreate: function () { // Add here any data where you want to transform before components be rendered }, methods: { // Add here all used callbacks and/or events onOpen: function () { // Do something... this.$refs.formattedinput.selectFirst(); } } }</script> <style></style>
FormattedInput Example
<template> <div> <JqxFormattedInput ref="myFormattedInput" :width="200" :height="25" :radix="'decimal'" :spinButtons="false" :value="330000" :decimalNotation="'exponential'"> </JqxFormattedInput> <div style="margin-top: 20px"> <JqxButton style="float: left" @click="getDecimal()" :width="185">Get Decimal Value</JqxButton> <JqxButton style="margin-left: 5px; float: left" @click="getExponential()" :width="185">Get Exponential Notation</JqxButton> <br /> <br /> <JqxButton style="float: left" @click="getScientific()" :width="185">Get Scientific Notation</JqxButton> <JqxButton style="margin-left: 5px; float: left" @click="getEngineering()" :width="185">Get Engineering Notation</JqxButton> </div> </div></template> <script> import JqxFormattedInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxformattedinput.vue"; import JqxButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttons.vue"; export default { components: { JqxFormattedInput, JqxButton }, methods: { getDecimal: function () { let decimalValue = this.$refs.myFormattedInput.val('decimal'); alert('Decimal Value: ' + decimalValue); }, getExponential: function () { let exponentialValue = this.$refs.myFormattedInput.val('exponential'); alert('Exponential Notation: ' + exponentialValue); }, getScientific: function () { let scientificValue = this.$refs.myFormattedInput.val('scientific'); alert('Scientific Notation: ' + scientificValue); }, getEngineering: function () { let engineeringValue = this.$refs.myFormattedInput.val('engineering'); alert('Engineering Notation: ' + engineeringValue); } } }</script> <style></style>