EasyUI Forum
May 20, 2024, 04:21:32 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 / Re: Dialog buttons on: April 18, 2012, 09:31:43 PM
Thanks Kevin. It's my fault, I forgot to update the easyui.css.
There is another issue here. If we maximize the Dialog in a iframe, the iframe will display scroll bar in IE9, but it is ok in chrome.
2  General Category / Bug Report / Dialog buttons on: April 17, 2012, 06:53:41 AM
The close, maximize and minimize buttons of dialog title bar cannot display in 1.2.5 and 1.2.6, even set the closable, maximizable and minimizable to true explicitly.
3  General Category / EasyUI for jQuery / Re: Event handler of Panel icon on: November 22, 2011, 09:31:42 PM
Thanks tslatt. In fact, the example is trying to add 2 buttons to the Panel toolbar, not the title bar.
4  General Category / EasyUI for jQuery / Event handler of Panel icon on: November 22, 2011, 02:30:09 AM
We can show a icon on the Panel title bar by setting the iconCls property, can we set an event handler for the icon, which will be fired when clicking on the icon? Or can we add some buttons with handler to the Panel title bar?
5  General Category / EasyUI for jQuery / Key event support for Messager on: November 22, 2011, 02:17:48 AM
Is the Messager support key event?
For example, using Messager.alert, can we close the dialog by pressing Enter (as clicking on the OK button)?
6  General Category / EasyUI for jQuery / Re: datagrid column title on: July 25, 2011, 06:48:53 AM
Got it, thank you very much!
7  General Category / EasyUI for jQuery / datagrid column title on: July 24, 2011, 08:59:21 AM
How can we get the datagrid column title? For example:
<table class="easyui-datagrid">
    <thead>
        <tr>
            <th field="Name" width="60">Name</th>
            <th field="Sex" width="35">Sex</th>
        </tr>
    </thead>
</table>
How can we get the "Name" and "Sex" text? Thanks in advance.
8  General Category / News / Re: jQuery EasyUI 1.2.4 Release on: July 12, 2011, 07:43:39 AM
Very appreciate stworthy's hard work!
When using EasyUI 1.2.4 with jQuery 1.6.2, I found 2 little issues.
1. Set the hidden property of datagrid column to true, the column could not be hidden. (using jQuery 1.5.2 in IE is ok, but also could not be hidden in Firefox)
2. The error message box always showing even disabled the validationbox. (again, using jQuery 1.5.2 is ok)
9  General Category / Bug Report / Re: Issues of datagrid plugin on: July 08, 2011, 08:43:33 AM
The problem was not solved by calling fitColumns/fixColumnSize/resize, but it is ok when run in Firefox 5.0. The following is the code:
<table id="dgCapacity" singleSelect="true" url="@Url.Action("CapacityList")" style="width:424px;height:auto;">
      <thead>
          <tr>
              <th field="YearMonth" width="80" align="center">年月</th>
              <th field="TypeNO" width="80">型号</th>
              <th field="Quantity" width="80" align="right">订单总数</th>
              <th field="LineDays" width="80" align="right">工作线日</th>
              <th field="Percentage" width="80" align="right">百分比</th>
          </tr>
      </thead>
</table>
<script type="text/javascript">
        $(function () {
            $("#dgCapacity").datagrid({
                queryParams: { StartYearMonth: '201107', EndYearMonth: '201107' },
                onLoadSuccess: function (data) {
                    var rowIndex = 0, rowSpan = 1;
                    var rows = $(this).datagrid("getRows");
                    for (var i = 0; i < rows.length; i++) {
                        if (rows.TypeNO.substr(0, 4) == "ZZZZ") {
                            $(this).datagrid("mergeCells", { index: rowIndex, field: "YearMonth", rowspan: rowSpan });
                            rowIndex = i + 1;
                            rowSpan = 1;
                        }
                        else {
                            rowSpan++;
                        }
                    }
                }               
            });
        });
</script>
10  General Category / Bug Report / Re: Issues of datagrid plugin on: July 07, 2011, 06:08:23 AM
easyui: 1.2.3
browser: IE8
test code see attached screenshot.
11  General Category / Bug Report / Issues of datagrid plugin on: July 06, 2011, 08:46:52 AM
I setted the datagrid width to a specific number, and setted the datagrid height to 'auto'.
After calling mergeCells method (I called it in onLoadSuccess event handler), the vertical scrollbar displayed! And the cells of the body did not align to the cells of the header again!
BTW, it is perfect if we can set the alignment of the header text and the alignment of the body cells text separately.

Please see attached screenshot for details.
12  General Category / EasyUI for jQuery / Error event of form plugin on: July 06, 2011, 07:13:11 AM
There is a "success" event in form plugin, which will be fired when the form is submitted success, but what if the submission is failed? Do we have a event something like "error"?
13  General Category / Bug Report / The dialog shadow issue on: July 06, 2011, 02:30:39 AM
If do not set the dialog width (I wanna the dialog width fit its content automatically), the dialog shadow will display incrrectly at the first time, but if close it and then open it again, it works.
14  General Category / EasyUI for jQuery / Re: easyui什么时候支持jquery1.62 on: July 06, 2011, 02:20:52 AM
Cool, I can't wait to see it!
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!