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

easyui combobox #10

Open
GoogleCodeExporter opened this issue Aug 17, 2015 · 1 comment
Open

easyui combobox #10

GoogleCodeExporter opened this issue Aug 17, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

when I'm using easyui-combobox the filter function only filter in case 
sensitive way, i want to use it with not case sensitive.
and when I implementing a onkeydown action of standard combobox, the action is 
not able to perform when the default combobox using easyui class.

Original issue reported on code.google.com by [email protected] on 20 Sep 2011 at 6:57

@GoogleCodeExporter
Copy link
Author

$('#slcCoordenador').combobox({
        filter: function (q, row) {
            var opts = $(this).combobox('options');
            return row[opts.textField].toUpperCase().indexOf(q.toUpperCase()) == 0;
        }
    });

Original comment by [email protected] on 18 Jul 2013 at 2:33

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

No branches or pull requests

1 participant