选择选项卡时,加载datagrid,easyui

时间:2015-09-25 12:27:28

标签: jquery jquery-easyui

我有一个面板白色4选项卡,当我单击一个选项卡时,我想将数据加载到datagrid。 我把通用名称 这是我的代码:

function create_datagrid() {
$('#grid_name').datagrid({
    url: "some url",
    title: 'Table',
    singleSelect: 'true',
    columns: [[
            {field: 'id', title: 'ID', with : 100, hidden: true},
            {field: 'fabricante', title: 'Nombre', with : 100, sortable:true}
        ]]
    });
}

$('#tt').tabs({
    onSelect: function (title) {
        $("#grid_name").ready(function () {

            create_datagrid();

      });
  }
});

1 个答案:

答案 0 :(得分:1)

试试这个:

       $('#tt').tabs({
            onSelect: function (title) {
                if (title == 'title1'){ //title tab 1
                    $('#grid_name1').datagrid('reload');
                }
                if (title == 'title2'){ //title tab 2
                    $('#grid_name2').datagrid('reload');
                }
                //and so on...
        });