EasyUI Forum
May 14, 2024, 05:12:34 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 / combobox,onLoadSuccess event on: April 14, 2013, 07:19:31 PM
Fires when remote data is loaded successfully.
but between  the data is loaded and The drop-down list items is initialized,I call the method setValue
in this case ,  the comobox shows the value of the 'Value' field, but not the Value of the 'Text' field

comobox does't have such an event which fired when the drop down list items is initialized.

please add it
2  General Category / General Discussion / Re: a suggestion about datagrid on: February 27, 2013, 08:43:41 PM
like this
  columns: [[{ field: 'Name', title: 'Name', width: 80,sortField:'otherFiled' , sortable: true },
                  { field: 'Email', title: 'Email', width: 80, sortable: true }
               ]],
3  General Category / General Discussion / a suggestion about datagrid on: February 27, 2013, 12:43:07 AM
sometimes,I used column's formatter or any other cause sort field and display field is not the same

I mean I need a different field to sort, different from the display field。

I think, easyui can use  the display field to sort when the sortfiled property is not define
          and easyui should  use the sortfiled property  when the sortfiled is defined 
4  General Category / News / Re: jQuery EasyUI 1.3.2 Release on: January 15, 2013, 12:29:10 AM
good
5  General Category / General Discussion / How to judge layout component‘s expand state? on: November 12, 2012, 12:51:04 AM
when I want to expand a layout panel?
if the panel is expanded ,the panel also do expand.

so I need a API for judge the panel's expand state.

Thank you!
6  General Category / Bug Report / combobox can not display a empty text item on: October 15, 2012, 11:30:33 PM
.combobox-item{
   padding:2px;
   font-size:12px;
   padding:3px;
   padding-right:0px;
}

if I has a item with empty text,this item's height is 0;
 please add   min-height:18px;



.combobox-item{
        min-height:18px;
   padding:2px;
   font-size:12px;
   padding:3px;
   padding-right:0px;
}
7  General Category / Bug Report / Re: the alert callback bug on: September 18, 2012, 12:33:40 AM
this condition not awlays heppen.
only when I use  a dialog

$("#popupProxyUser").dialog({
                href: url,//this url is a other page which i find the alert callback bug
                title: "代理用户",
                width: 600,
                height: 500,
                modal: true,
                closed: false,
                cache: false
            });
8  General Category / Bug Report / Re: the alert callback bug on: September 17, 2012, 11:10:33 PM
I'm using easyui 1.3.1
9  General Category / Bug Report / Re: the alert callback bug on: September 17, 2012, 11:06:39 PM

$.ajax({
            url: $$.getRootPath() + currentPath + 'SetProxyUser',
            cache: false,
            type: "post",
            data: { userIds: userIds.join($$.splitor), goodsOwnerID: goodsOwnerID },
            beforeSend: function () { $.messager.progress("close"); },
            error: function () { $$.progressEnd(); },
            success: function (result) {
                if (result.Success) {
                    $.messager.alert("提示", "保存成功", "info", function(){ $.messager.progress("close");});
                }
                else {
                    $.messager.alert("提示", "保存失败" + result.Message, "info", function(){$.messager.progress("close");});
                }
            }
        });
10  General Category / Bug Report / the alert callback bug on: September 17, 2012, 11:02:56 PM
when I use alert callback  like this
         $.messager.alert("提示", "保存成功", "info", function(){ $.messager.progress("close")});

when the callback is fired, will display such a error message "Uncaught TypeError: Cannot read property 'options' of undefined"

why? and  how to fix it
11  General Category / Bug Report / Re: datagrid编辑新曾一行时的bug on: August 22, 2012, 08:33:58 PM
这个情况也同样发生在删除行时,This also occurred in  deleteRow
var tbuser=$('#id').datagrid({
.....,
onDblClickRow: function (rowIndex, rowData) {
                tbuser.datagrid('deleteRow', rowIndex);
            }
});
 
第一次执行双击删除行,没问题。first doubleClick OK
第二次执行双击删除行,没问题。second doubleClick OK
第三次执行双击删除行,第一行的索引就是从1开始了,而不是0。third doubleClick   the first row index is 1,but not 0。

作者提供的datagrid-patch.js可以解决这个问题。The author provides the datagrid-patch.js can solve this problem
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!