日期:2014-05-16  浏览次数:20595 次

easyui datagrid在google下是否存在兼容性
windows2003 mvc4 ie8 遨游 google浏览器 
jquery-1.6.2.min.js jquery.easyui.min.js(1.3.2版本)
<script type="text/javascript">
         $(function () {
             list();
         });
         function list() {
             $('#test').datagrid({
                 title: '管理组数据列表',
                 //method: 'Get',
                 width: 700,
                 height: 550,
                 checkOnSelect:false,
                 url: '/Handler/AdminGroup.ashx',
                 frozenColumns: [[
                { field: 'ck', checkbox: true },
                { field: 'Yi_ID', title: '编号', width: 80, align: 'center' },
{ field: 'Yi_GroupName', title: '管理组名称', width: 120, align: 'center' },
{ field: 'Yi_MenuID', title: '管理组权限', width: 120, align: 'center' },
                    { field: 'Yi_PID', title: '操作', width: 120,align:'center',
                     formatter: function (value, rec) {
                        return '<span style="color:red"><a href="#" onclick="javascript:btnEdit();">编辑</a></span>';
                    } 
                    }
]],
                 toolbar: [{
                     text: '添加',
                     iconCls: 'icon-add',
                     handler: function () {
                         btnAdd();
         &