-
-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Selection plugin not working after update #1432
Comments
Replacing the gridjs call with |
There's indeed a regression in 6.2.0. The plugin list is cleared after the header config is parsed. This patch seems enough to fix the issue. diff --git a/src/config.ts b/src/config.ts
index 86bdbc6..92adae9 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -149,6 +149,9 @@ export class Config {
});
}
+ // clear existing plugins list to prevent duplicate errors
+ config.plugin = new PluginManager();
+
// Header
config.assign({
header: Header.createFromConfig(config),
@@ -167,9 +170,6 @@ export class Config {
translator: new Translator(config.language),
});
- // clear existing plugins list to prevent duplicate errors
- config.plugin = new PluginManager();
-
if (config.search) {
// Search
config.plugin.add({ |
any updates? |
Hi. Any updates on this? |
Is there any other way to use selection plugin on Vue? I have same issue. |
https://codepen.io/zoeleee/pen/QWReKVO |
It's ok on ver 6.1.1 |
Describe the bug
After the update (6.2.0), the Selection plugin no longer produces the check boxes. Prior to this update the plugin could be used without installation.
To Reproduce
Here is a small section of code that demonstrates the missing check boxes:
`
Expected behavior
I would expect a grid with three columns and the left most column to be a series of check boxes
Screenshots
Desktop (please complete the following information):
Additional context
The code was working on 2024-03-01
The text was updated successfully, but these errors were encountered: