java - Editable JCombobox and the key listener -
how add key event listener in jcombobox accepts whole string ex. if add 's' should search string start 's' in database .if there no result should wait user type other character in combobox similar results
check if helps-
combobox.addkeylistener(new keyadapter() { @override public void keyreleased(keyevent ke) { // text typed , search // text combo box, , not key event } });
Comments
Post a Comment