jQuery UI Widgets Forums Dialogs and Notifications Tooltip, Notification, Popover change template leads notification content duplicated

This topic contains 1 reply, has 2 voices, and was last updated by  Stanislav 6 years, 8 months ago.

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

  • wureka
    Participant

    Hi, I use jqxWidgets 5.5 commercial version and found below bug:
    CSS:
    jqx.base.css
    jqx.bootstrap.css

    include JS:
    jquery-2.2.4.min.js
    jqxcore.js
    jqx-all.js

    HTML:
    <div>
    <button id=”btnTest1″>TEST 1</button>
    <button id=”btnTest2″>TEST 2</button>
    </div>
    <div id=”notifyBox”>
    <div>TEST MESSAGE</div>
    </div>

    JS script:
    $.jqx.theme = ‘bootstrap’;
    var btnTest1;
    var btnTest2;
    $(document).ready(function () {
    $(‘#notifyBox’).jqxNotification({
    width:’600′,
    template:’error’
    });

    btnTest1 = $(‘#btnTest1’).jqxButton().click(function () {
    $(‘#notifyBox’).jqxNotification(‘template’, ‘error’);
    $(‘#notifyBox’).jqxNotification(‘open’);
    });
    btnTest2 = $(‘#btnTest2’).jqxButton().click(function () {
    $(‘#notifyBox’).jqxNotification(‘template’, ‘info’);
    $(‘#notifyBox’).jqxNotification(‘open’)
    });

    });

    Operation steps:
    1. Press button TEST1 and the notification is normal
    2. Press button TEST2 and the content in notification area is duplicated
    3. Press button TEST1 and the content in notification area is second time duplicated

    If I switch to jqxWidgets 5.4, no such error happens
    Sorry about that I didn’t create demo in jsFiddle because I don’t know how to load jqx-all.js v5.5 and jqxcore.js v5.5


    Stanislav
    Participant

    Hello wureka,

    Thank you for reporting this issue.
    A fix should be out in the near future.

    Best Regards,
    Stanislav

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

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

You must be logged in to reply to this topic.