dwr 呼び出しからロードされた jqgrid があります。ダイナミックテーブルです。POJO で 3 つのステータスを設定し、動的チェックボックスを生成します。
これは私のpojoコードです。
private String cBox;
public String cBox()
{
if (style() == D)
{
return i l create checkbox here;
}
else if (style() == E)
{
return checkbox will be created ;
}
else if (getStatusFlag() == F)
{
return checkbox will be created;
}
return cBox;
}
このようにjqgridをロードします。
colNames : ['Code no.', 'Title' ],
colModel : [{
name : 'code_no',
index : 'code_no',
width : '100%',
sorttype : 'text',
align : 'left'
},
{
name : 'title',
index : 'title',
width : '100%',
sorttype : 'text',
align : 'left'
}]
スタイルが D の場合は行全体を太字にし、色が E の場合は行の背景色を青にしたい. jqgrid 行をどのようにカスタマイズすればよいですか?