Issue #502Opened November 10, 2017by sanjeevSavitr0 reactions

Hide a particular component in preview

Question

Hi,

Is it possible to hide "Banner_Options_Btn" component when I click preview button.

Code SnippetTEXT
I Used toHTML() function. And when I called editor.getHtml() it is returning the html as expected, but when I click preview button the "Banner_Options_Btn" appears.

Here is the code. Please Help me

    domc.addType('banner_gal', {
      model: defaultModel.extend({
        defaults: Object.assign({},
          defaultModel.prototype.defaults, {
            type: 'banner_gal_type',
            tagName: 'div',
            toolbar: [],
            components: [{
                tagName: "div",
                type: "button",

                components: [{
                  classes: ["Banner_Options_Btn"],
                  tagName: "button",
                  type: "button",
                  content: 'Options',
                  styles: 'display:inline-block',
                  toolbar: [],
                }]
              },

            ],
          }),
        toHTML(opts) {
              var retVal = '<div>My Own Content</div>';
              return retVal;
        }
      }, {
        isComponent(el) {
          var result = '';
          if (el.tagName == 'DIV' && el.className == "main_banner_div") {
            result = {
              type: 'banner_gallery_portion'
            };
          }
          return result;
        },

      }, ),

      view: defaultType.view.extend({
        init() {
          this.listenTo(this.model, 'change:src', this.updateSrc);
          //            this.listenTo(this.model, 'click active', this.updateSrc);
        },

        events: {
          //                'click .BannerTopLevel':'handleClick',
          'click .simple_banner': 'ShowSimpleBanner',

        },
      })
    });

Answers (3)

artfNovember 10, 20170 reactions

You can make use of command events inside your component, eg.

editor.on('run:preview', () => { console.log('preview ON') })
sanjeevSavitrNovember 10, 20170 reactions

Thanks for the help.

And please send the command event that is triggered when we click "Hide Preview".

lock[bot]September 18, 20190 reactions

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

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.