jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Peter,
Issue is still open. Could you please help on this issue.
Thanks,
NileshHi 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,
NileshHi 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' }); };
Hi Hristo,
Please visit the following link to see the code..
https://www.jseditor.io/?key=dropdown-issue-1I 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 -
AuthorPosts