jQWidgets Forums

jQuery UI Widgets Forums Form jqxNumberInput change event not raised

This topic contains 2 replies, has 2 voices, and was last updated by  Fabrice 6 years, 2 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author

  • Fabrice
    Participant

    Hi,

    I have a big problem.
    When I set a change event on custom field in jqxForm (type=text) a change event is never called

     init: function (component)
                {
                   component.jqxNumberInput(
                        {
                            width: '200px',
                            symbol: " €",
                            min: 0,
                            spinButtons: true,
                            symbolPosition: 'right',
                            decimalDigits: 2,
                            digits: 3,
                            disabled:disabled,
                        });
    
                   component.on('change',function(args)
                        {
                            alert('hello');
                        });
                },

    when I replace jqxNumberInput with jqxInput, it’s OK

    any idea ?

    Thx

    Fabrice


    Hristo
    Participant

    Hello Fabrice,

    Please, take a look at this example.

    Best Regards,
    Hristo Hristov

    jQWidgets team
    https://www.jqwidgets.com


    Fabrice
    Participant

    Hello Hristo,

    Thank’s very much for your reply and the solution.
    Everything is Ok with your example and I found the problem with my code :
    with type: ‘text’ and jqxInput control type , the event raised
    with type: ‘number’ and jqxNumberInput control type, the event is NOT raised

    Fabrice

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

You must be logged in to reply to this topic.