You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have just investigated the issues and found the source of problem. The checkbox slipped due to the class form-check-input belonging to silverstripe admin.
The class has a css property which sets the position to "absolute" causing the checkbox to start shifting. I did a minor modification in my own admin css by setting bulkSelect and bulkSelectAll classes with position property to "static" which resolved the issues for me.
Hi,
I would like to implement this extension to my SilverStripe 4 project.
After the installation I use this code:
$config = GridFieldConfig_RecordEditor::create();
$config->addComponent(new BulkManager());
$gridfield = new GridField('Tasks', 'Tasks', $this->Tasks(), $config);
$fields->addFieldToTab('Root.Main', $gridfield);
But the result is look like this:
Is there anyone who has the same problem or maybe can help me?
The text was updated successfully, but these errors were encountered: