Javascript Jqgrid鼠标悬停时的行高更改

Javascript Jqgrid鼠标悬停时的行高更改,javascript,jquery,css,jqgrid,Javascript,Jquery,Css,Jqgrid,这是我的名字: colNames: ['', '<span class="ui-icon ui-icon-flag"></span>', 'NTPEP Number', 'Manufacturer', 'Product', 'Status','','Data', 'Actions'], colname:['','NTPEP编号','制造商','产品','状态','','数据','操作'], 这是我的模型: colModel: [{ name: 'tc_id', in

这是我的名字:

colNames: ['', '<span class="ui-icon ui-icon-flag"></span>', 'NTPEP Number', 'Manufacturer', 'Product', 'Status','','Data', 'Actions'],
colname:['','NTPEP编号','制造商','产品','状态','','数据','操作'],
这是我的模型:

 colModel: [{ name: 'tc_id', index: 'tc_id', align: 'left', hidden: true, resizable: false, key: true },
            { name: 'Flag', index: 'Flag', width:30,align: 'left', resizable: false, formatter: function (cellvalue, options, rowObject) { return "<div id= flag_" + rowObject[0] + " class='flag'><span class='ui-icon ui-icon-flag'></span></div>" } },
                   { name: 'NTPEP_Number', index: 'NTPEP_Number', width: 150, align: 'left', resizable: false, formatter: fontColorFormat },
                   { name: 'Manufacturer', index: 'Manufacturer', width: 200, align: 'left', resizable: false },
                   { name: 'Product', index: 'Product', width: 150, align: 'left', resizable: false, formatter: fontColorFormat },
                   { name: 'Status', index: 'Status', width: 80, align: 'left', resizable: false },
                   { name: 'Locked_Flag', index: 'Locked_Flag', width: 30, align: 'left', resizable: false,formatter:lockedFlag},

                  { name: 'Data', sortable: false, edittype: 'select', width: 70, align: 'left', sortable: false, formatter: function (cellvalue, options, rowObject) { return "<div id= action_" + rowObject[0] + " class='action'><div class='btn-group' id='actions'><div class='collapse navbar-collapse'><ul class='actions'><li class='dropdown'><a href='#' class='dropdown-toggle grid-icon' data-toggle='dropdown'></a><ul class='dropdown-menu'><li><a href='#'>Product</a></li><li><a href='#'>Test</a></li></ul></li></ul></div></div><div class='clear'></div></div>"; }, resizable: false },
                   { name: 'Actions', index: 'Actions', sortable: false, edittype: 'select', width: 85, align: 'left', sortable: false, formatter: function (cellvalue, options, rowObject) { return "<div id= action1_" + rowObject[0] + " class='action1'><div class='btn-group' id='actions'><div class='collapse navbar-collapse'><ul class='actions'><li class='dropdown'><a href='#' class='dropdown-toggle grid-icon' data-toggle='dropdown'></a><ul class='dropdown-menu'><li><a href='#'>Product</a></li><li><a href='#'>Test</a></li></ul></li></ul></div></div><div class='clear'></div></div>"; }, resizable: false }],

        rowNum: 20,
        rowList: [2, 10, 20, 50],   // page size dropdown
        pager: jQuery('#pager_Alerts'),
        pgbuttons: true,            
        viewrecords: true,          
        pagerpos: 'right',
        recordpos: 'left',
        shrinkToFit: false,
        sortorder: "asc",
        sortname: "tc_id",
        loadtext: "Loading",
        width: 795,
       height: "100%",
        hoverrows: false,
        onCellSelect: function (rowid, iCol, cellcontent, e) {}
colModel:[{name:'tc_id',index:'tc_id',align:'left',hidden:true,resizeable:false,key:true},
{name:'Flag',index:'Flag',width:30,align:'left',resize:false,formatter:function(cellvalue,options,rowObject){return”“},
{name:'NTPEP_Number',index:'NTPEP_Number',宽度:150,对齐:'left',可调整大小:false,格式化程序:fontColorFormat},
{name:'Manufacturer',index:'Manufacturer',width:200,align:'left',resizeable:false},
{name:'Product',index:'Product',width:150,align:'left',resize:false,formatter:fontColorFormat},
{name:'Status',index:'Status',width:80,align:'left',resizeable:false},
{name:'Locked_Flag',index:'Locked_Flag',宽度:30,对齐:'left',可调整大小:false,格式化程序:lockedFlag},
{name:'Data',sortable:false,edittype:'select',width:70,align:'left',sortable:false,formatter:function(cellvalue,options,rowObject){return“
        • ;},resizable:false}, {name:'Actions',index:'Actions',sortable:false,edittype:'select',width:85,align:'left',sortable:false,formatter:function(cellvalue,options,rowObject){return“
  • 在Chrome中,当我将鼠标移到行上时,行高度会自动增加,如下所示。

    这不是期望的行为:

    在IE中,它工作得很好,就像普通的jqgrid行一样。

    请告诉我,问题是什么?是css问题还是我缺少一些属性