EasyUI Forum
July 26, 2024, 09:56:25 PM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: 1 ... 148 149 [150] 151 152
2236  General Category / EasyUI for jQuery / Re: How can I use linkbutton in datagrid fomatter on: June 18, 2014, 08:58:10 AM
The 'formatter' function only returns the formatted string. This function can't create any components automatically. You have to construct them manually. Please try to call .linkbutton(...) when loaded data successfully.
Code:
$('#dg').datagrid({
  onLoadSuccess:function(){
    $(this).datagrid('getPanel').find('a.easyui-linkbutton').linkbutton();
  }
});
2237  General Category / EasyUI for jQuery / Re: how to filter datagrid by all columns from one search field on: June 18, 2014, 08:52:55 AM
The local searching is similar to this tutorial. All you need to do is to filter the 'data' and call 'loadData' method to render the new rows. Please see the 'doSearch' function to learn how to achieve this functionality.
Code:
function doSearch(q){
    var rows = [];
    $.map(data, function(row){
        for(var p in row){
            var v = row[p];
            if (String(v).indexOf(q) >= 0){
                rows.push(row);
                break;
            }
        }
    });
    $('#dg').datagrid('loadData', rows);
}
2238  General Category / EasyUI for jQuery / Re: how to filter datagrid by all columns from one search field on: June 17, 2014, 07:56:32 PM
Here is the tutorial shows how to add search functionality.
http://www.jeasyui.com/tutorial/datagrid/datagrid24.php
2239  General Category / Bug Report / Re: Datagrid pagination and appendRow on: June 17, 2014, 09:17:47 AM
The appendRow method append a new row to the current page. To append to other page, you have to change the grid page before calling this method.
2240  General Category / EasyUI for jQuery / Re: Drag and Drop on: June 15, 2014, 03:22:23 PM
You have to use draggable and droppable plugins to achieve this functionality manually.
2241  General Category / EasyUI for jQuery / Re: changing datagrid column title on: June 12, 2014, 03:12:28 PM
To update and apply column properties, you have to recreate datagrid with the new columns.
Code:
var dg = $('#dg');
var columns = dg.datagrid('options').columns;
columns[0][2].title = 'new title';  //change columns ...
dg.datagrid({columns:columns});  // recreate datagrid
2242  General Category / Bug Report / Re: destroyRow bug in edatagrid mode using pagination on: June 11, 2014, 09:17:02 AM
Please confirm if you are using the latest edatagrid plugin. If not, please download it from http://www.jeasyui.com/extension/edatagrid.php.
2243  General Category / Bug Report / Re: Datagrid row filter on: June 10, 2014, 08:49:45 AM
Please download the latest 'datagrid-filter.js' file from http://www.jeasyui.com/extension/datagrid_filter.php. You may need to override the filter operators. The operator code looks like this:
Code:
$.extend($.fn.datagrid.defaults.operators,{
less: {
text: 'Less',
isMatch: function(source, value){
return source < value;
}
}
})
2244  General Category / EasyUI for jQuery / Re: Confirmation dialog on panel onBeforeClose on: June 09, 2014, 06:31:37 PM
All the $.messager functions work in async mode. This means that the user can't block it before doing any more. To make the confirm message window works like a native confirm window in 'onBeforeClose' event, please try the code below:
Code:
$('#win').window({
  onBeforeClose:function(){
    var p = $(this);
    $.messager.confirm('Confirm','Are you sure you want to close?',function(r){
      if (r){
        var opts = p.panel('options');
        var onBeforeClose = opts.onBeforeClose;
        opts.onBeforeClose = function(){};
        p.panel('close');
        opts.onBeforeClose = onBeforeClose;
      }
    });
    return false;
  }
})
2245  General Category / General Discussion / Re: last selected on combobox on reload on: June 07, 2014, 05:44:42 AM
If a data item has 'selected' property set to true, it will be selected when loaded successfully. All you need to do is to set 'selected' property for the specified item from your returned json data. Look at the following data, the 'Ruby' item will be selected since its 'selected' property is set to true.
Code:
[{
"value":1,
"text":"Java"
},{
"value":2,
"text":"C#"
},{
"value":3,
"text":"Ruby",
"selected":true
}]
2246  General Category / Bug Report / Re: Datagrid row filter on: June 03, 2014, 08:38:53 AM
Please try to download the latest 'datagrid-filter.js' file from http://www.jeasyui.com/extension/datagrid_filter.php
2247  General Category / EasyUI for jQuery / Re: automatic check/select data in datagrid on: June 03, 2014, 07:50:23 AM
The 'checkRow' method must be called after loaded data successfully, so please do the checking rows in the 'onLoadSuccess' event.
Code:
<table id="package_group_table" class="easyui-datagrid" style="width:250px;height:150px"
    data-options="url:admin/packagegroup/list_package_group_for_checkbox',singleSelect:false,
    onLoadSuccess:function(){
var rows = $(this).datagrid('getRows');
for(var i=0; i<rows.length; i++){
if (rows[i]['CHECKED']){
$(this).datagrid('checkRow',i);
}
}   
    }
    ">
    <thead>
        <tr>
            <th data-options="field:'PACKAGE_GROUP_ID'">ID</th>
            <th data-options="field:'PACKAGE_GROUP_ALIAS'">Name</th>
            <th data-options="field:'CHECKED'">Status</th>
            <th data-options="field:'CHECKED_STATUS',checkbox:true">Ck</th>
        </tr>
    </thead>
</table>
2248  General Category / EasyUI for jQuery / Re: Combobox autocomplete whilst limiting options to those listed on: June 02, 2014, 05:11:03 PM
A possible solution to solve this issue is to add a validate type to this combobox. When inputed value is invalid, the prompt message will display.
Code:
$.extend($.fn.validatebox.defaults.rules,{
       inList:{
              validator:function(value,param){
                     var c = $(param[0]);
                     var opts = c.combobox('options');
                     var data = c.combobox('getData');
                     var exists = false;
                     for(var i=0; i<data.length; i++){
                            if (value == data[i][opts.textField]){
                                   exists = true;
                                   break;
                            }
                     }
                     return exists;
              },
              message:'invalid value.'
       }
})
Apply this 'inList' validation type to a combobox component.
Code:
$('#cc').combobox({
       validType:'inList["#cc"]'
});
2249  General Category / EasyUI for jQuery / Re: Uncaught TypeError: Cannot read property 'hidden' of null datagrid-filter.js:386 on: May 29, 2014, 03:03:15 PM
The rows must be an array, so the returned data should be as.
Code:
{"total":1,"rows":[{...}]}
2250  General Category / Bug Report / Re: Menubutton: Incorrect menu position on: May 28, 2014, 08:45:33 PM
Our developer team has solved this menu issue. Now the menu can adjust its height automatically when displaying on top or on bottom of the button. The patch file can be downloaded from http://www.jeasyui.com/download/downloads/jquery-easyui-1.3.6-patch.zip.
Pages: 1 ... 148 149 [150] 151 152
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!