How to hide checkbox

Hello Johnny

Can you helpme with this issue?

I migrate to new version 3.18

Hello @NOLO ,

I will have it a look. Just to make sure what is the code that you have in order to disable the checkbox? If you can send me how to reproduce this it would help. Meantime trying to reproduce it locally.

Regards
Johnny

GC 3.1.7

$crud->setTable('bancos');
$crud->setSubject('Bancos', 'Bancos');
$crud->setCsrfTokenName('_token');
$crud->setCsrfTokenValue(csrf_token());
$crud->unsetDeleteMultiple();

$output = $crud->render();

Fantastic @NOLO ! Thanks for the feedback :slight_smile: This issue is reproducible and has been fixed in version 3.1.9, which will be released soon.

In the meantime, as a workaround, you can hide the checkbox by adding the following CSS to your project:

CSS:

[class^="gc-checkbox-"] {
    display: none;
}

Regards
Johnny

1 Like

Hello @NOLO ,

I am glad to inform you that this is now fixed at the latest version 3.1.9 which was released today :slight_smile:

Enjoy
Johnny

1 Like

Thansk Johnny!

I have new version!

1 Like