We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In a grid, the icon pen is displayed even the config options editable is disabled. It’s really unpleasant when for developing a CMP.
Still when disable the config options editable in a column.
Easy to fix the "bug" In the file "revolution/manager/assets/modext/widgets/core/modx.grid.js" line 475 and 1176
replace "if (c[i].editor) {" by : "if (c[i].editor && c[i].editable) {"
All
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Summary
In a grid, the icon pen is displayed even the config options editable is disabled.
It’s really unpleasant when for developing a CMP.
Step to reproduce
Still when disable the config options editable in a column.
Observed behavior
Easy to fix the "bug"
In the file "revolution/manager/assets/modext/widgets/core/modx.grid.js" line 475 and 1176
replace "if (c[i].editor) {"
by : "if (c[i].editor && c[i].editable) {"
Expected behavior
Environment
All
The text was updated successfully, but these errors were encountered: