Issue #2865✓ SolvedOpened July 1, 2020by ghost4 reactions

Enable 'view components' button on panel by default

快速解答by mcottret2

Hi @Enmaboya ! Looking at the default Panels configuration, it should be active by default. If you have a custom panels configuration, you need to add the active: true property to the button's configuration (like here). Alternatively, you can retrieve the button using the Panels API to make it active after initializin...

Read full answer below ↓

Question

this button is currently off by default. so you have to turn it on every time, which is not obvious to everyone.

how do you make it active right away? image

Answers (3)

👍 Most helpfulmcottretJuly 1, 2020

Hi @Enmaboya !

Looking at the default Panels configuration, it should be active by default.

If you have a custom panels configuration, you need to add the active: true property to the button's configuration (like here).

Alternatively, you can retrieve the button using the Panels API to make it active after initializing the editor, eg:

editor.Panels.getButton('options', 'sw-visibility').set('active', true);

Note that the getButton parameters may vary depending on your panels & buttons configurations.

ghostJuly 2, 2020

@mcottret thank you so much!

sdchamoliOctober 19, 2021
代码片段TEXT
In  Angular  
 myPlugin: any;
   
 this.myPlugin = editor => {
      editor.Panels.addPanel({
        id: 'basic-actions',
        el: '.panel__basic-actions',
        buttons: [
          {
            id: 'visibility',
            active: true, // active by default
            className: 'btn-toggle-borders',
            label: '<u>B</u>',
            command: 'sw-visibility', // Built-in command
          }
        ],
      });
}

After that inn your editor init add your plugin

    return grapesjs.init({
 plugins: [this.myPlugin],
})

Related Questions and Answers

Continue research with similar issue discussions.

Paid Plugins That Match This Issue

Curated by issue keywords and label relevance to help you ship faster.

View all plugins

Loading paid plugin recommendations...

Free option

Check the open-source GrapesJS plugins on GitHub or run a quick search in our free catalog.

Browse free plugins →
Premium option

Premium plugins ship with support, regular updates, and production-ready features — save days of integration work.

Browse premium plugins →

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.