decimalNotation
|
string
|
'default'
|
Sets or gets the decimalNotation property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input decimal-notation="exponential" width="250" height="25"></jqx-complex-input>
|
disabled
|
bool
|
false
|
Sets or gets the disabled property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input disabled="true" width="250" height="25"></jqx-complex-input>
|
height
|
int
|
null
|
Sets or gets the height property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25"></jqx-complex-input>
|
placeHolder
|
string
|
''
|
Sets or gets the placeHolder property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input place-holder="Enter a complex number" width="250" height="25"></jqx-complex-input>
|
roundedCorners
|
bool
|
true
|
Sets or gets the roundedCorners property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input rounded-corners="false" width="250" height="25"></jqx-complex-input>
|
rtl
|
bool
|
false
|
Sets or gets the rtl property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input rtl="true" width="250" height="25"></jqx-complex-input>
|
spinButtons
|
bool
|
false
|
Sets or gets the spinButtons property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input spin-buttons="true" width="250" height="25"></jqx-complex-input>
|
spinButtonsStep
|
int
|
1
|
Sets or gets the spinButtonsStep property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input spin-buttons-step="10" width="250" height="25"></jqx-complex-input>
|
template
|
string
|
'default'
|
Sets or gets the template property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input template="primary" width="250" height="25"></jqx-complex-input>
|
theme
|
string
|
''
|
Sets or gets the theme property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input theme="energyblue" width="250" height="25"></jqx-complex-input>
|
value
|
string
|
''
|
Sets or gets the value property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input value="'190 - 17i'" width="250" height="25"></jqx-complex-input>
|
width
|
int
|
null
|
Sets or gets the width property.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25"></jqx-complex-input>
|
|
change
|
Event
|
|
Code examples
Bind to the change event of jqxComplexInput.
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input on-change="eventHandler()"></jqx-complex-input>
@section scripts { <script type="text/javascript"> function eventHandler(event) {
|
|
destroy
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) {
|
getReal
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) { var result = instance["getReal"]();
|
getImaginary
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) { var result = instance["getImaginary"]();
|
render
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) {
|
refresh
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) {
|
val
|
Method
|
|
<script src="~/jqwidgets/jqxcomplexinput.js"></script>
<jqx-complex-input width="250" height="25" instance="getInstance()"></jqx-complex-input> @section scripts { <script type="text/javascript"> function getInstance(instance) { var result = instance["val"]();
|