EasyUI Forum
September 14, 2025, 01:52:14 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / Bug Report / Re: easyui1.4 textbox ie bug on: April 01, 2015, 07:43:43 PM
A possible way to solve this issue is to attach a 'keyup' event to the textbox. When the user press any keys, the textbox accepts the entered characters immediately.
Code:
$('#tt').textbox({
inputEvents: $.extend({}, $.fn.textbox.defaults.inputEvents, {
keyup: function(e){
var t = $(e.data.target);
t.textbox('setValue', t.textbox('getText'));
}
})
})
problem remain ~~
2  General Category / Bug Report / Re: easyui1.4 textbox ie bug on: March 31, 2015, 06:47:36 PM
mark~~
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!