EasyUI Forum
November 04, 2025, 06:41:38 PM *
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: Error on submit form with Internet Explorer IE (no success event is triggered) on: July 14, 2014, 07:26:26 AM
i found solution: http://social.msdn.microsoft.com/Forums/ie/en-US/7d02173f-8f45-4a74-90bf-5dfbd8f9c1de/ie-11-issue-with-two-password-input-fields
2  General Category / Bug Report / Re: Error on submit form with Internet Explorer IE (no success event is triggered) on: July 14, 2014, 07:14:58 AM
I found the error - if the form has an input field type="password", then the method form.success is called immediately
in IE11
3  General Category / Bug Report / Re: Error on submit form with Internet Explorer IE (no success event is triggered) on: July 14, 2014, 05:33:12 AM
I have a similar problem in IE11:
after form.submit() immediately called form.success with empty data and then the controller action

in FF it works.

I changed the line 7524 in jquery.easyui-1.3.6.js ("onload" instead "load"):
 _44e.bind("onload", cb);

....and the form.success is not called in IE11
4  General Category / Bug Report / Re: draggable init bug on: May 30, 2013, 06:59:00 AM
no reaction ((((
EasyUI a good framework, but the lack of response to the detected errors can not make it better (((
5  General Category / Bug Report / Re: draggable init bug on: May 07, 2013, 11:32:56 PM
if initially draggable element is disabled, it is not initialised !!!
why is this happening can be seen from the source:

Code:
	$.fn.draggable = function(options, param){
if (typeof options == 'string'){
return $.fn.draggable.methods[options](this, param);
}
....................

if (opts.disabled == true) {
$(this).css('cursor', '');
// $(this).css('cursor', 'default');
return;
}
.....................

initialization occurs below:
Code:
var handle = null;
            if (typeof opts.handle == 'undefined' || opts.handle == null){
                handle = $(this);
            } else {
                handle = (typeof opts.handle == 'string' ? $(opts.handle, this) : opts.handle);
            }
$.data(this, 'draggable', {
options: opts,
handle: handle
});
this is bug or feature?
6  General Category / Bug Report / draggable init bug on: April 22, 2013, 11:52:03 PM
create a draggable element that initially he disabled.

Code:
$('.selector').draggable({
                            revert:true,
                            disabled: true,
                            proxy: .....
                            .......
                        });
if the 'disabled == true', $.data(this, "draggable") is empty, see fragment of code:

Code:
if(_32.disabled==true){
$(this).css("cursor","");
return;
}
var _34=null;
if(typeof _32.handle=="undefined"||_32.handle==null){
_34=$(this);
}else{
_34=(typeof _32.handle=="string"?$(_32.handle,this):_32.handle);
}
$.data(this,"draggable",{options:_32,handle:_34});

then I make it enabled, event handlers and proxy need to be defined again
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!