EasyUI Forum
November 05, 2025, 12:37:26 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1]
1  General Category / EasyUI for jQuery / Re: Datagrid Checkbox by GroupView on: August 09, 2019, 07:37:48 AM
wow amazing Shocked, thanks for the help stworthy case closed.
2  General Category / EasyUI for jQuery / Datagrid Checkbox by GroupView on: August 08, 2019, 09:17:24 PM
hi, please help me.
how to apply the check box only based on the group selected in DataGrid.

my code :
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...
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!