jQuery UI Widgets Forums Editors NumberInput Increase Digit size

This topic contains 3 replies, has 2 voices, and was last updated by  Dimitar 10 years, 10 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • Increase Digit size #46007

    priyankajain
    Participant

    Hello Sir,

    I have used JqxNUmberInput in my code and my requirement is that i need float values in this format-10,2(ex 1234567891.12 (10 digits before decimal & 2 Digits after decimal point).

    Please guide me and give reply as soon as possible.

    Thanks & Regards
    Priyanka jain

    Increase Digit size #46010

    Dimitar
    Participant

    Hello Priyanka jain,

    Here is an example:

    <!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.10.2.min.js"></script>
        <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
        <script type="text/javascript" src="../../jqwidgets/jqxnumberinput.js"></script>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#numericInput").jqxNumberInput({ width: '250px', height: '25px', decimalDigits: 2, digits: 10, max: 9999999999 });
            });
        </script>
    </head>
    <body class='default'>
        <div id='numericInput'>
        </div>
    </body>
    </html>

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Increase Digit size #46063

    priyankajain
    Participant

    Hello Sir,

    I have applied these properties in my code but when we enter value greater than 8 digit it’s consider maximum value of 8 digit
    If i have not applied max property in my code then if we enter value greater than 8 digit red border comes.
    Please guide me and tell me how we can resolve it.

    Regards
    Priyanka jain

    Increase Digit size #46071

    Dimitar
    Participant

    Hi Priyanka jain,

    In the example we provided you, we were able to input 1234567891.12. Are you able to do so? Please provide us with your code, so that we may determine the source of the issue you are experiencing.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.