hi, please help me.
how to apply the check box only based on the group selected in DataGrid.
my code :
<table class="easyui-datagrid" id="candu" style="width:100%; height:485px"
method="get"
url="listlab"
singleSelect="false"
fitColumns="true"
sortName="column4"
rowNumbers="true"
sortOrder="asc"
multiSort="true"
data-options="
view:groupview,
groupField:'column4',
groupFormatter:function(value, rows) {
return value + ' - ' + rows.length + ' Data';
}
">
<thead>
<tr>
<th field="id" width="10px" checkbox="true" ></th>
<th field="column1" width="20px">Column 1</th>
<th field="column2" width="20px">Column 2</th>
<th field="column3" width="30px" editor="textbox">Column 3</th>
<th field="column4" width="20px" sortable="true" >Column 4</th>
</tr>
</thead>
</table>
thanks...