Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

jQWidgets jqxComplexInput decimalNotation Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxComplexInput is a jQuery input widget that is used for taking input of complex numbers containing real and imaginary parts.

The decimalNotation property is used to set or return the notation that display the real and imaginary parts of the complex number. It accepts String type value and its default value is ‘default’.

Its possible values are –

  • ‘default’ – The default value contains decimal notation. For example – ‘330000 – 200i’
  • ‘exponential’ – It represents date in exponent form. For example – ‘3.3e+5 – 2e+2i’
  • ‘scientific’ – It represents number in power of 10. For example – ‘3.3×10⁵ – 2×10²i’
  • ‘engineering’ – For example –  ‘330×10³ – 200×10⁰i’

 

Syntax:

Set the decimalNotation property.

$('selector').jqxComplexInput({ decimalNotation: String });

Return the decimalNotation property.

var decN = $('selector').jqxComplexInput('decimalNotation');

Linked Files: Download jQWidgets from the given link https://www.jqwidgets.com/download/. In the HTML file, locate the script files in the downloaded folder.

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcomplexinput.js”></script>

The below example illustrates the jQWidgets jqxComplexInput decimalNotation property.

Example:

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
        "jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" 
        src="scripts/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxcore.js"></script>
      <script type="text/javascript" 
        src="jqwidgets/jqx-all.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxcomplexinput.js"></script>
</head>
  
<body>
    <center>
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
  
        <h3>
            jQWidgets jqxComplexInput decimalNotation Property
        </h3>
  
        <input id="jqxCI" type="text" />
    </center>
  
    <script type="text/javascript">
        $(document).ready(function() {
            $("#jqxCI").jqxComplexInput({
                width: 300,
                height: 40,
                value: "1500 + 722i",
                decimalNotation: 'scientific'
            });
        });
    </script>
</body>
  
</html>

Output:

Reference: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxcomplexinput/jquery-complex-input-api.htm


My Personal Notes arrow_drop_up
Last Updated : 29 Sep, 2021
Like Article
Save Article
Similar Reads
Related Tutorials