Select the line checkbox when clicking the line

0

How do I select a line and click the checkbox?

<tbody><?phpforeach($usersas$user):?><!--trbehaviour="app.behaviours.panel"
                data-panel-action="show"
                data-panel-href="<?php // echo $this->Html->url(['action' => 'update', $user['User']['code']]); ?>"
                -->
                <tr>
                    <td>
                        <?php
                            $this->App->setattribute('type', 'checkbox');
                            $this->App->setattribute('toggle', 'User.id');

                            if ($user['User']['id'] == '1' or $user['User']['id'] == '2') {
                                $this->App->setattribute('disabled', 'disabled');
                            }

                            echo $this->App->createinput(false, 'toggle.' . $user['User']['id']);
                        ?>
                    </td>
                    <td><?php echo $user['User']['id']; ?></td>
                    <td><?php echo $user['User']['name']; ?></td>
                    <td><?php echo $user['User']['email']; ?></td>
                    <td><?php echo $user['User']['username']; ?></td>
                </tr>
    
asked by anonymous 27.11.2015 / 15:30

0 answers