GrapesJS Issues

3,464 parsed GitHub issues 370 solved · 90 open. Search, filter and explore battle-tested answers.

114 issues found

🔍 invalid issue
#2348Oct 22, 2019by ney11No answers
0 reactions

Grapesjs link is not working...it shows path but it not navigate

WARNING READ and FOLLOW next 5 steps, then REMOVE them before posting the issueFollow CONTRIBUTING Guidelines https://github.com/artf/grapesjs/blob/master/CONTRIBUTING.mdUse the GitHub Issues EXCLUSIVELY for BUGS, FEATURE REQUESTS or QUESTIONS. Prefix the title of the issue with its context, eg. [Bug]: ....Do a quick...

#2264Sep 12, 2019by raghuv91 answer
0 reactions

How to load a remote url inside grapes js

this is how i tried to load my gitpage but its not working mounted() { const LandingPage = { html: '', css: null, components: null, style: null, }; this.editor = grapesjs.init({ container: "#gjs", canvas: { styles: [], }, fromElement: true, components:'' , style: '', plugins: [], pluginsOpts: { "gjs-preset-webpage": {...

jcarizza

Hello @raghuv9 first think that you cant make a request with AJAX because the CORS. Ypu need to grab the content in other way (maybe in the backend) and renderize in the editor with. editor.component(<your-content>).

#2235Sep 1, 2019by damey20111 answer
0 reactions

Styles are overriding when new styles are added for different device

Great project.. I'm trying to integrate this and I have this issue. Assuming I have a style for Desktop already and I add a new style for mobile for example, instead of creating a media query for mobile, it overwrites it without creating any media query. Any help ?

artf

Please @damey2011 follow the [BUG] template when you open an issue like this, with the current information it's impossible to us give you any valid help

#2171Jul 28, 2019by talya-akshotaNo answers
0 reactions

How and if possible to create chart block in grapesjs?

WARNING READ and FOLLOW next 5 steps, then REMOVE them before posting the issueFollow CONTRIBUTING Guidelines https://github.com/artf/grapesjs/blob/master/CONTRIBUTING.mdUse the GitHub Issues EXCLUSIVELY for BUGS, FEATURE REQUESTS or QUESTIONS. Prefix the title of the issue with its context, eg. [Bug]: ....Do a quick...

#2166Jul 24, 2019by froderf3 answers
2 reactions

How to remove a block?

editor.DomComponents.getWrapper().getEl().insertAdjacentHTML('beforeBegin', letBlock) letBlock letblock is a variable that contains HTML. Question:How to remove this adjacent HTML?is there a function like "insertAdjacentCSS()"?

zgover

You touched on a few questions here, but to get to your first in your headline; reference the BlockManager api docs here e.g.

artf

You're mixing too much stuff in one question and without any context

froderf

@artf I just wanted to remove the new block that I added via editor.DomComponents.getWrapper().getEl().insertAdjacentHTML();

#2140Jul 16, 2019by khbhrNo answers
0 reactions

Drag component with its parent

WARNING READ and FOLLOW next 5 steps, then REMOVE them before posting the issueFollow CONTRIBUTING Guidelines https://github.com/artf/grapesjs/blob/master/CONTRIBUTING.mdUse the GitHub Issues EXCLUSIVELY for BUGS, FEATURE REQUESTS or QUESTIONS. Prefix the title of the issue with its context, eg. [Bug]: ....Do a quick...

#2120Jul 5, 2019by alikabeer321 answer
0 reactions

CSS properties of body (#wrapper) not editable after editor.setComponents(html);

When I save my page in a database refresh, the html and css are set like so $.ajax({ url: "../feeder.php", type: 'POST', processData: false, contentType: false, data: fd, success: function(result){ var response = JSON.parse(result); html = response.html; css = response.css; //editor.CssComposer.getAll().reset(); edito...

artf

@alikabeer32 follow the BUG template please, without a demo it's hard to understand the issue

Browse all topics