Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search and Clear button issue in IE8 #144

Open
kumar-harshvardhan opened this issue Jul 4, 2014 · 0 comments
Open

Search and Clear button issue in IE8 #144

kumar-harshvardhan opened this issue Jul 4, 2014 · 0 comments

Comments

@kumar-harshvardhan
Copy link

I have user flexigrid in my project to display use list.Except IE8 It is working fine in all the browsers.In IE8 "Search" and "Clear" button is not displaying,only text name of the button is displaying.
button issue.

code for these two buttons in flexigrid.js is like

                var rDiv = $('<div/>').css({ display: 'inline'}).appendTo(sDiv2);
                $('<input/>', { type: 'button', value: p.searchtext,'style': 'cursor:pointer'}).css(sDivCSS).appendTo(rDiv).click(function(e) {
                    var qq = sDiv2.children('.qsinput:visible');
                    g.doSearch();
                    qq.focus();
                });
                $('<input/>', { type: 'button', value: p.resettext,'style': 'cursor:pointer'}).css(sDivCSS).appendTo(rDiv).click(function(e) {
                    var qq = sDiv2.children('.qsinput');
                    qq.val('');
                    g.doSearch();
                    qq.focus();
                });

Provide any solution for this.

Thanks In advance.

Kumar Harshvardhan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant