JQgrid ligne de l'ensemble de la hauteur

Je suis en utilisant JqGrid avec javascript.
Je voudrais régler la hauteur de chaque ligne de la table mais je n'ai pas comprendre comment le faire.

C'est mon code:

 function jobList(){
var json=doShowAll(); 
alert("jobList() ==> php/get_job_status.php?value="+json);
jQuery("#jobList").jqGrid({
url:'php/get_job_status.php?value='+json,
datatype: "xml",
colNames:['id','title', 'start', 'stop','completed'],
colModel:[
{name:'id',index:'id', width:15,hidden:true, align:"center"},
{name:'title',index:'title', width:150, align:"center"},
{name:'start',index:'start', width:350, align:"center", sorttype:"date"},
{name:'fine',index:'fine', width:350, align:"center", sorttype:"date"},
{name:'completed',index:'completed', width:120, align:"center",formatter:highlight},//il solitoformatter:infractionInFormatter},  
],
//rowNum:8,
//rowList:[8,10,20,30],
pager: '#pagerJobList',
sortname: 'id',
viewrecords: true,
sortorder: "desc",
multiselect: false,
subGrid: false,
autowidth: true,
height: 250,
rowheight: 300,
caption: "Job Progress",
afterInsertRow: function(rowid, aData){
jQuery("#jobList").jqGrid('setCell', rowid, 'completed', '', {
background: 'red',
color: 'white'
});
},
onSelectRow: function(id){
//alert(id);
var title="";
if (id) { 
var ret = jQuery("#jobList").jqGrid('getRowData',id);
title=ret.id;
//alert(title);
} 
else { 
alert("Please select row");
}
var json2=doShowAll(); 
subGrid(json2,title);
} 
}
); 

}

Modifiant RowHeight valeur les lignes de la hauteur ne change pas.
C'est mon résultat de table

JQgrid ligne de l'ensemble de la hauteur

Merci beaucoup.

u ne voir ce post : trirand.com/blog/?page_id=393/help/...
oui mais ne fonctionne pas pour moi

OriginalL'auteur michele | 2010-07-08