I have the newest jqGrid and jquery 1.11
My problem is that the search toolbar looks weird..like size would be too small…
Morover the context menu with search operations is opened like behind of grid.. :/
Â
JS:
 var paramView = {
      init: function() {
         //grid
         $(“#paramList”).jqGrid({
            url:’./requests.php?action=getParamList’,
            datatype: “json”,
            colNames:,
            colModel:[ {name:’id’,index:’id’, hidden: true , editable:false,   Â
  Â
editrules: {edithidden:false}},
                   Â
{name:’vname’,index:’vname’,width:20,editable:true,editoptions{size:20},searchoptions:{sopt:}}, Â Â Â
  Â
                                                            Â
{name:’vvalue’,index:’vvalue’, Â Â Â
width:30,editable:true,editoptions:{size:20}},
                                            Â
{name:’vdescription’,index:’vdescription’,width:50,editable:true,editoptions:{size:20}}], Â Â Â
  Â
            rowNum:10,
            rowList:[10,20,30],
            pager: ‘#pager’,
            rownumWidth: 40,
            sortname: ‘vname’,
            viewrecords: true,
            autowidth: true,
                               shrinkToFit: true,
            sortorder:”desc”,
            gridview: true,
            editurl:”./requests.php?action=modifyData”,
            caption:”Parametry systemowe” });
   $(“#paramList”).jqGrid(‘filterToolbar’,{searchOperators : true});
    }
}

I think that it’s not CSS fault..
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top