EasyUI Forum
September 14, 2025, 09:30:06 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 / General Discussion / datetimebox change event on: November 02, 2015, 08:10:51 PM
why the datetimebox has not 'onChange' event?
2  General Category / General Discussion / Re: Layout Show and Hide method on: September 21, 2015, 08:35:58 PM
You can get the special region panel and show or hide it. The code below shows how to hide the west panel.
Code:
$('#layout').layout('panel','west').panel('close');
$('#layout').layout('resize');
ok,thank you.I tested it and this method is ok.
3  General Category / General Discussion / Layout Show and Hide method on: September 17, 2015, 12:10:25 AM
The layout plugin has collapse and expand method now,but we need show and hide method in layout plugin.
4  General Category / EasyUI for jQuery / combobox performance on: July 22, 2015, 01:58:21 AM
when a page contains 10 combobox,this page will render slowly. all these combobox are created from <select> element like this:
Code:
<select id="cc" class="easyui-combobox" name="dept" style="width:200px;">
    <option value="aa">aitem1</option>
    <option>bitem2</option>
    <option>bitem3</option>
    <option>ditem4</option>
    <option>eitem5</option>
</select>
5  General Category / Bug Report / Re: datagrid selected Multiple Rows delete bug for easy1.4.2 !!! [BUG] on: June 26, 2015, 02:08:22 AM
To obtain the index is not correct. It is Unable to delete.
Code:   
var rf=$('#modelFieldGrid');
var rows=rf.datagrid('getSelections');
for(var j=0;j<rows.length;j++){
   var index = rf.datagrid('getRowIndex', rows[j]);
   rf.datagrid('deleteRow',index);
}

I think after the code rf.datagrid('deleteRow',index) executed;,the 'rows' array will change.
6  General Category / Bug Report / Re: combobox bug on: June 23, 2015, 12:58:19 AM
We have tested it in our machine, no errors occur. If your issue continues, please try to update the 'jquery-1.8.2.min.js' file to another version, or update the easyui to the latest version.
Are you tested it under easyui 1.4+ ,IE9 and jquery 1.8.2?  if you test it on IE11 and change document mode(like this attachment) to IE9,there is no error.
7  General Category / Bug Report / combobox bug on: June 22, 2015, 08:49:43 PM
there are two page:test1.html and test2.html.
test1.html code:
Code:
<html>
<head>
    <title></title>
    <link href="Scripts/EasyUI/themes/default/easyui.css" rel="stylesheet" type="text/css" />    
    <link href="Scripts/EasyUI/themes/icon.css" rel="stylesheet" type="text/css" />

    <script src="Scripts/jquery-1.8.2.min.js" type="text/javascript"></script>
    <script src="Scripts/EasyUI/jquery.easyui.min.js" type="text/javascript"></script>
    <script src="Scripts/EasyUI/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>

</head>
<body style="margin:0px;">
    
<div style="width:500px;height:500px;">
   [b] <iframe id="iframe" src="test2.html" scrolling="no" style="width:100%;height:100%;"></iframe>[/b]
</div>
</body>
</html>

test2.html code:
Code:
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title></title>
    <link href="Scripts/EasyUI/themes/default/easyui.css" rel="stylesheet" type="text/css" />    
    <link href="Scripts/EasyUI/themes/icon.css" rel="stylesheet" type="text/css" />

    <script src="Scripts/jquery-1.8.2.min.js" type="text/javascript"></script>
    <script src="Scripts/EasyUI/jquery.easyui.min.js" type="text/javascript"></script>
    <script src="Scripts/EasyUI/locale/easyui-lang-zh_CN.js" type="text/javascript"></script>
</head>
<body style="margin:0px;">
<div  style="width:800px; height: 500px;text-align:center;padding-top:20px;">
    <input id="combo" />
</div>
<script type="text/javascript">
    $(function () {
        $('#combo').combobox({
            valueField: 'id',
            textField: 'name',
            data: [
                { 'id': 1, 'name': '1' },
                { 'id': 2, 'name': '2' },
                { 'id': 3, 'name': '3' },
                { 'id': 4, 'name': '4' },
                { 'id': 5, 'name': '5' },
                { 'id': 6, 'name': '6' }
            ],
            value: 3
        });
    });
</script>

</body>
</html>

 using easyui 1.4.1 and IE9,  if we vist test1.html, tere will be an error(see the attchment image).
 if we vist test2.html,no error.
 
8  General Category / Bug Report / combobox bug on: February 12, 2015, 08:23:04 PM
you can reproduce the bug in the attach.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!