jQuery UI Widgets Forums General Discussions jqxLoader problem

This topic contains 1 reply, has 2 voices, and was last updated by  svetoslav_borislavov 1 year, 10 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • jqxLoader problem #132727

    masda
    Participant

    good afternoon,
    with the following code the loader never appears

    $(‘#btSave’).click(function(){
    $(‘#body’).jqxValidator(‘validate’);
    });

    $(‘#body’).on(‘validationSuccess’, function () {

    $(‘#jqxLoader’).jqxLoader(‘open’);

    var aFormData = new FormData();

    but if I make this:
    $(‘#btSave’).click(function(){
    $(‘#jqxLoader’).jqxLoader(‘open’);
    });

    It works.
    what is the problem?

    Thanks

    jqxLoader problem #132729

    Hi,

    Did you initialize the jqxValidator, because you are trying to use an Event from the jqxVaildator?
    This event will never be raised and the code in it will never be executed if you don’t have jqxValidator.

    Also, a demo will be helpful!

    Best regards,
    Svetoslav Borislavov

    jQWidgets Team
    https://www.jqwidgets.com/

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

You must be logged in to reply to this topic.