2013-02-14 89 views
2

我有一個Jqgrid表,我想要一個更大的標題欄。我嘗試了一切哦,我的ui.jqgrid.css文件,但沒有任何工作。我在那個文件中像正常設置:Jqgrid - 更大的標題欄

/*Grid*/ 
    .ui-jqgrid {position: relative;} 
    .ui-jqgrid .ui-jqgrid-view {position: relative;left:0px; top: 0px; padding: .0em; font-size:25px; } 


    /* caption*/ 


    .ui-jqgrid .ui-jqgrid-titlebar {padding: .3em .2em .2em .3em; position: relative; border-left: 0px none;border-right: 0px none; border-top: 0px none; } 
    .ui-jqgrid .ui-jqgrid-title { float: left; margin: .1em 0 .2em; } 
    .ui-jqgrid .ui-jqgrid-titlebar-close { position: absolute;top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height:18px;}.ui-jqgrid .ui-jqgrid-titlebar-close span { display: block; margin: 1px; } 
    .ui-jqgrid .ui-jqgrid-titlebar-close:hover { padding: 0; } 



    /* header*/ 
    .ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0em;padding: 0em; overflow- x: hidden; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important; height: 30px;} 

    .ui-jqgrid .ui-jqgrid-hbox {float: left; padding-right: 20px;} 
    .ui-jqgrid .ui-jqgrid-htable {table-layout:fixed;margin:0em;} 
    .ui-jqgrid .ui-jqgrid-htable th {height:22px;padding: 0 2px 0 2px;} 
    .ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;} 
    .ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0px none;border-bottom : 0px none;} 
    .ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {border-left : 0px none;} 
    .ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {border-right : 0px none;} 
    .ui-first-th-ltr {border-right: 1px solid; } 
    .ui-first-th-rtl {border-left: 1px solid; } 
    .ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;} 
    .ui-jqgrid .ui-jqgrid-resize {height:20px !important;position: relative; cursor :e-resize;display: inline;overflow: hidden;} 
    .ui-jqgrid .ui-grid-ico-sort {overflow:hidden;position:absolute;display:inline; cursor: pointer !important;} 
    .ui-jqgrid .ui-icon-asc {margin-top:-3px; height:12px;} 
    .ui-jqgrid .ui-icon-desc {margin-top:3px;height:12px;} 
    .ui-jqgrid .ui-i-asc {margin-top:0px;height:16px;} 
    .ui-jqgrid .ui-i-desc {margin-top:0px;margin-left:13px;height:16px;} 
    .ui-jqgrid .ui-jqgrid-sortable {cursor:pointer;} 
    .ui-jqgrid tr.ui-search-toolbar th { border-top-width: 1px !important; border-top- color: inherit !important; border-top-style: ridge !important } 
    tr.ui-search-toolbar input {margin: 1px 0px 0px 0px} 
    tr.ui-search-toolbar select {margin: 1px 0px 0px 0px} 

Jqgrid

在此先感謝您的幫助。

+0

screenshort看起來很奇怪。你使用'<!DOCTYPE html ...'作爲HTML文件的第一行嗎?你有改變字體大小與cSS有'!重要'部分?你在你的問題中寫了關於「tittle bar」的文章,但是隻能看到screenshort上的列標題。你真的想增加「標題欄」的高度而不是列標題或其他元素嗎? – Oleg 2013-02-14 09:39:41

+0

好吧,我喜歡增加那個頂點部分的高度(藍色部分動作,ciudad,corporacion,radicado等),但我嘗試了一切關於CSS沒有成功。 – JuanFernandoz 2013-02-14 10:07:03

回答

1

您已經包含兩個CSS線從ui.jqgrid.css

.ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;} 
.ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;} 

因此增加列標題的高度,你可以使用其他固定height值一樣

.ui-jqgrid .ui-jqgrid-htable th div { height: 23px; } 
.ui-jqgrid .ui-th-div-ie { height: 23px; } 

或使用height: auto風格:

.ui-jqgrid .ui-jqgrid-htable th div { height: auto; } 
.ui-jqgrid .ui-th-div-ie { height: auto; } 
+0

我正在做這個oleg,但問題在於。實際上,標題欄會增加其大小,但intead會隨着頁面上顯示的實際大小顯示。 – JuanFernandoz 2013-02-14 19:32:42

+0

爲了得到這個工作,我們還得想一想:我們必須修改這一行,並設置相同的高度:'.ui-jqgrid .ui-jqgrid-hdiv {position:relative; margin:0em; padding:0em; overflow-x:hidden; border-left:0px none!important; border-top:0px none!important; border-right:0px none!important; height:50px;}'非常感謝@Oleg。 – JuanFernandoz 2013-02-14 19:40:24

+0

@JuanFernandoz:不客氣! – Oleg 2013-02-14 20:46:43