Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts

  • JohannJvR
    Participant

    Hi gwjwin,

    I had the exact same problem using
    $(“#jqxNumberInput”).jqxNumberInput({
    width: ‘250px’,
    height: ’25px’,
    spinButtons: true,
    inputMode: ‘simple’,
    decimalDigits: 0
    });

    I have changed it to the following to get the desired result.

    $(“#jqxNumberInput”).jqxNumberInput({
    width: ‘250px’,
    height: ’25px’,
    spinButtons: true,
    promptChar: ” “,
    groupSeparator: “”,
    decimalDigits: 0
    });

    It works.
    The only problem now is that when you highlight the number, it also highlight the blank spaces, but I am fine with that (much better that deleting the 0 every time).
    Also you cannot have a group separator (was not available in simple mode anyway).

    Hope this helps

    regards

Viewing 1 post (of 1 total)