Ola , galera to com duvida em como mexer na tabela,estou com dificuldade de como aumentar a fonte e o tamanho da tabela,procurei e nada achei!! isso é feito dentro das configurações do jquery.jqGrid.min?
aqui segue a tabela como exemplo:
<script type="text/javascript">
$(function() {
var mydata = [ {
id : "1",
invdate : "2010-05-24",
name : "test",
note : "note",
tax : "10.00",
total : "2111.00"
} ];
jQuery("#single").jqGrid(
{
data : mydata,
datatype : "local",
height : 150,
rowNum : 10,
rowList : [ 10, 20, 30, 50 ],
colNames : [ 'Inv No', 'Date', 'Client', 'Amount', 'Tax',
'Total', 'Notes' ],
colModel : [ {
name : 'id',
index : 'id',
width : 60,
sorttype : "int"
}, {
name : 'invdate',
index : 'invdate',
width : 90,
sorttype : "date",
formatter : "date"
}, {
name : 'name',
index : 'name',
width : 100
}, {
name : 'amount',
index : 'amount',
width : 80,
align : "right",
sorttype : "float",
formatter : "number"
}, {
name : 'tax',
index : 'tax',
width : 80,
align : "right",
sorttype : "float"
}, {
name : 'total',
index : 'total',
width : 80,
align : "right",
sorttype : "float"
}, {
name : 'note',
index : 'note',
width : 150,
sortable : false
} ],
pager : "#plist47",
rowNum : 10,
rowList : [ 10, 20, 30 ],
sortname : 'name',
viewrecords : true,
sortorder : "desc",
caption : "Coberturas"
});
});
</script>