EasyUI Forum
April 28, 2024, 02:13:34 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 ... 237 238 [239]
3571  General Category / EasyUI for jQuery / Re: ValidateBox 使用远程验证 返回什么格式? on: July 12, 2011, 12:16:01 AM
Return 'true' when successfully.
3572  General Category / News / jQuery EasyUI 1.2.4 Release on: July 12, 2011, 12:11:11 AM
We are pleased to announce the availability of jQuery EasyUI 1.2.4.
  • Compatible with jQuery 1.6.x.
  • New plugins are added.
  • Some bugs in previous version are fixed.
  • Some useful features are added to exists plugins.

Please visit http://www.jeasyui.com/download/v124.php to see more details.
3573  General Category / Bug Report / Re: combogrid's bug in jquery-easyui-1.2.3 visited in ie6 on: July 10, 2011, 08:13:07 PM
The first select element is created as combogrid component but the second is a normal select element that placed below the combogrid. When using IE, the select element is considered an ActiveX object and on top of every HTML element in the page.

To solve this problem, change the select element to combobox component by adding 'easyui-combobox' class attribute to it.
3574  General Category / EasyUI for jQuery / Re: determining object type on: July 07, 2011, 06:50:29 PM
The all plugin such as datagrid and treegrid is same as other jQuery plugins(find, html, val, etc), they all extend with jQuery.fn object.
There is no efficient way to determine the object type, but you can add a type option while creating your object and then read this type from the 'options' object or directly to determine its object like this:

Code:
var target = $('#tt').get(0); // the DOM object
if ($.data(target,'treegrid')){
  alert('treegrid');
} else if ($.data(target,'datagrid')){
  alert('datagrid')
}
3575  General Category / Bug Report / Re: Issues of datagrid plugin on: July 07, 2011, 06:23:40 PM
Cannot find your test code but you can call 'fixColumns' or 'resize' method to try to fix this issue. If the problem is not solved, run your code in another browser.
3576  General Category / EasyUI for jQuery / Re: automatic Data Binding on form does not support radio ? on: July 07, 2011, 12:00:21 AM
This feature will be supported in version 1.2.4. You can also download the updated form plugin from http://www.jeasyui.com/easyui/plugins/jquery.form.js.
3577  General Category / Bug Report / Re: Issues of datagrid plugin on: July 06, 2011, 08:15:00 PM
Can you give more details about this issue?
  • The easyui version you are using
  • The browser and its version
  • Some test code about your issue
3578  General Category / EasyUI for jQuery / Re: Error event of form plugin on: July 06, 2011, 07:15:36 PM
The success callback function of form plugin is fired when the response data returned from server, which usually takes correct and error data. The submit action is processed by using invisible iframe and not by XHR, so we don't need the error callback function.
3579  General Category / EasyUI for jQuery / Re: Problem with menu appendItem on: July 06, 2011, 06:40:37 PM
Create the menu first and then call 'appendItem' method to append menu item to your menu.

The easiest way to create menu is to add 'easyui-menu' class attribute to a <div/> markup, just like this:
<div id="div_menu" class="easyui-menu" style="width:100px;"></div>

Now you can call the 'appendItem' method:
Code:
var arrs = ["test1","test1","test1","test1"];
for (var i=0;i<arrs.length;i++) {
  $("#div_menu").menu('appendItem', {
     text:arrs[i],
     onclick:'javascript:alert("ok")'
     // or
     // handler:function() {alert("ok")}
  });
}

3580  General Category / Bug Report / Re: The dialog shadow issue on: July 06, 2011, 03:16:27 AM
Usually the dialog float over the page and need to set its width and height. You can set the 'maximized' property to true to make dialog maximize when open.
3581  General Category / EasyUI for jQuery / Re: easyui什么时候支持jquery1.62 on: July 04, 2011, 05:53:44 PM
Some new features will be added to the version 1.2.4
  • Compatible with JQuery 1.6.x
  • Add searchbox plugin
  • Add progressbar plugin
  • ...
3582  General Category / News / New forum created on: June 29, 2011, 03:28:17 AM
Hi,
The new forum is created. We cordially invite you to use this forum for discussions regarding jQuery EasyUI.
You can also visit the old forum http://jquery-easyui.wikidot.com/forum:start.
Pages: 1 ... 237 238 [239]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!