Issue #2865Opened July 1, 2020by ghost4 reactions

[QUESTION] enable 'view components' button on panel by default

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)

mcottretJuly 1, 20202 reactions

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, 20202 reactions

@mcottret thank you so much!

sdchamoliOctober 19, 20210 reactions
Code SnippetTEXT
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...

Browse Plugin Categories

Jump directly to plugin category pages on the marketplace.