Vue UI Components Documentation

Vue ComplexInput Component

The ComplexInput component for Vue contains an input field with auto-complete functionality and a list of selectable items displayed in a drop-down.

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 ComplexInput component for Vue requires the following import:


Add the jqxComplexInput component to the components section of the the Vue class:


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 - <JqxComplexInput/>


Properties

The properties of the <JqxComplexInput/> component are defined in the data member of the Vue class. We should put them in the return object of the data function:


Events

The events in Vue are set as an attribute with @ prefix, for example:


All events that are bound to a component are implemented in the methods member of the Vue class.


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:

<JqxComplexInput ref="complexinput"></JqxComplexInput>

Here how you can use a component's method:

this.$refs.complexinput.getReal();

methods: {
// Add here all used callbacks and/or events
onInputChange: function () {
// Do something on change
let real = this.$refs.complexinput.getReal();
alert(real);
}
}

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:

ComplexInput Example

<template>
<div>
<JqxComplexInput ref="myComplexInput"
:width="250" :height="25" :value="'15 + 7.2i'">
</JqxComplexInput>
<div style="margin-top: 20px;">
<JqxButton @click="getRealPart()" :width="150">
Get real part
</JqxButton>
<JqxButton @click="getImaginaryPart()" :width="150">
Get imaginary part
</JqxButton>
</div>
</div>
</template>
<script>
import JqxComplexInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxcomplexinput.vue";
import JqxButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttons.vue";
export default {
components: {
JqxComplexInput,
JqxButton
},
methods: {
getRealPart: function () {
let realPart = this.$refs.myComplexInput.getReal();
alert(`Real part is ${realPart}`);
},
getImaginaryPart: function () {
let imaginaryPart = this.$refs.myComplexInput.getImaginary();
alert(`Imaginary part is ${imaginaryPart}`);
}
}
};
</script>
<style>
.jqx-button {
display: inline-block;
margin-right: 5px;
}
</style>

Run Code