こんにちは、3 つのサブグリッドを持つ jqGrid を取得し、それらを水平方向に整列させることさえ可能かどうかを調べようとしています。このような:
==================================================
| | _ ___| | | |__ _ __| | | |__ _ __ _ ____ |
それぞれを左右にフロートするように設定しようとしましたが、重要に設定してもスタイルが上書きされます。どんな助けでも大歓迎です。
subGridRowExpanded: function(subGridDivId,rowId){
$("#ClassGroupGrid").jqGrid('setSelection',rowId);
var subgridClassTableId = subGridDivId + "_class_t";
var subgridCreationTableID = subGridDivId + '_creation_t';
var subgridConnectionTableID = subGridDivId + '_connection_t';
$("#" + subGridDivId).html("<table style='float: left !important' id='" + subgridClassTableId + "'></table>");
$("#" + subgridClassTableId).jqGrid({
datatype: 'local',
data: classGroupData[parseInt(rowId) -1],
colNames:['Classes'],
colModel:[
{name:'Classes', formatter: classGroupClassesFormatter}
],
shrinkToFit: true
});
$('#' + subGridDivId).append("<table id='" + subgridCreationTableID + "'></table>");
$("#" + subgridCreationTableID).jqGrid({
datatype: 'local',
data: classGroupData[parseInt(rowId) -1],
colNames:['Creation Rules'],
colModel:[
{name:'Creation Rules', formatter: classGroupCreationFormatter}
],
shrinkToFit: true
});
$('#' + subGridDivId).append("<table style='float: right !important' id='" + subgridConnectionTableID + "'></table>");
$("#" + subgridConnectionTableID).jqGrid({
datatype: 'local',
data: classGroupData[parseInt(rowId) -1],
colNames:['Connection Rules'],
colModel:[
{name:'Connection Rules', formatter: classGroupConnectionFormatter}
],
shrinkToFit: true
});
}