jQWidgets Forums

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: JqGrid filter issue JqGrid filter issue #85156

    nravhad
    Participant

    Hi Peter,

    Issue is still open. Could you please help on this issue.

    Thanks,
    Nilesh

    in reply to: JqGrid filter issue JqGrid filter issue #85122

    nravhad
    Participant

    Hi Peter,

    It is a empty string. But after selecting filter to empty it is not showing any record on grid.
    Could u please help me how to share image with you so that you will help me on this issue.

    Thanks,
    Nilesh

    in reply to: DropDownList issue on IE 11 DropDownList issue on IE 11 #84472

    nravhad
    Participant

    Hi Hristo,

    I found the root cause for this issue. I have a closeMenu function which I am calling on the focusOut event of the dropdownProductBtn which shows the dropdown on its click.
    Below is my HTML.
    <input type='text' id="dropdownProductBtn" style='width: 500px; font-size: 11px; font-family: Verdana;' onClick="this.select();" onfocus='javascript:productTables.showMenu()' onkeyup='javascript:productTables.filterMenu()'/>
    The root cause is that CloseMenu function is getting called on its onClick event of dropdownProductBtn not sure how and why. If I disable that event Its resolves the issue but causing other functionality breaks.
    Could you please help how I can disable the closeMenu event on dropdownProductBtn click.
    Below is my JS.

    productTables.showMenu = function () {
            $("#dropdownProduct").css({
                'visibility': 'visible',
                'display': 'block',
                'position': 'absolute',
                'z-index': '999'
            });
        };
    $("input#dropdownProductBtn").on('focusout', function () {
                actiondata.getEMIRMCEligProductDetails();
                productTables.closeMenu();
            });
    productTables.closeMenu = function () {
            $("#dropdownProduct").css({ 'visibility': 'hidden', 'display': 'none' });
        };
    
    in reply to: DropDownList issue on IE 11 DropDownList issue on IE 11 #84467

    nravhad
    Participant

    Hi Hristo,
    Please visit the following link to see the code..
    https://www.jseditor.io/?key=dropdown-issue-1

    I could not go for latest version only for dropdown issue as it is not a feasible because other jQWidgets components are working fine on IE 11.
    Could you please help on the existing scenario.

    Thanks,
    Nilesh

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