Hide a particular component in preview
Question
Hi,
Is it possible to hide "Banner_Options_Btn" component when I click preview button.
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)
You can make use of command events inside your component, eg.
editor.on('run:preview', () => { console.log('preview ON') })
Thanks for the help.
And please send the command event that is triggered when we click "Hide Preview".
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.
Issue #400
Hide An element in commands
Hi, I want to hide a particular element when ever we click a toolbar button commands: { defaults: [{ id: 'submenuitem', run: function(edito...
Issue #1643
Render New Html to editor with Action of Traits
I create New custom Tool with (default html) when draged , and i also create traits for this component when i click on checkbox excuting fu...
Issue #898
editor.getHtml() outside the iframe of grapesjs.
How should I get the getHtml() outside the grapesjs editor. I have a save button outside the iframe of editor. I am not getting the current...
Issue #563
Table <thead> and <tbody> tag gets Omitted
Hello, There is new issue with GrapesJS (maybe). I've created new component using bm.add() in which I've used a table element with <thead>...
Paid Plugins That Match This Issue
Curated by issue keywords and label relevance to help you ship faster.
Loading paid plugin recommendations...
Browse Plugin Categories
Jump directly to plugin category pages on the marketplace.