EasyUI Forum
December 20, 2025, 07:08:40 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: combogrid data url is triggerd 2 times on: April 17, 2015, 06:17:48 AM
where is the 1.4.2 patch file?
2  General Category / Bug Report / Re: 1.4.2 messager plugin location problem on: April 17, 2015, 02:54:32 AM
I have tried window("move"), but i see the window "jump" to the new location, not "display" at there. What I want is to show the window there directly.
3  General Category / Bug Report / 1.4.2 messager plugin location problem on: April 16, 2015, 11:59:10 PM
before 1.4.2, i can easily change a messager window's location by chain a window() method after the messager() method like this:
Code:
$.messager.alert(title,msg,icon,fn).window({top:10,left:10});
now, when i upgrade my easyui to 1.4.2, it doesn't work. chain a window() method causes all buttons disappeared, and messager.progress() will throw a lot of exceptions.

here is my solution:
Code:
var prg = $.messager.progress({"title" : "Progress",	"msg" : "Progressing..."})[0]["parentElement"];
$(prg).css({"top" : 20, "left" : 20});
$(prg["nextSibling"]).css({"top" : 20, "left" : 20});
now it works, but it's so messy.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!