jqgrid应用问题

1.在某种条件下,设置行背景色。

                loadComplete:function() {
                    var n = $('#list').getGridParam('records'); // 取得所有行
                    for(var i=0;i<n;i++){
                        var p = i+1;
                        var thisid = $("#list").getCell(p,"keyword"); // 取得某列的值
                        if (thisid == "1") {
                            document.getElementById(p).style.background="#FFBFFF"; // 设置背景色
                            /* $('#2').css("background","red"); */
                        }
                    }

                }

2. jqgrid设置字体大小,自动换行

    修改ui.jqgrid.css文件的

   .ui-jqgrid tr.jqgrow td {font-size:14px;font-weight: normal; overflow: hidden; white-space: pre; height: 22px;padding: 0 2px 0 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;white-space: normal !important;height:auto;vertical-align:text-top;padding-top:2px;}



你可能感兴趣的:(jqgrid应用问题)