GrapesJS Issues

Search parsed GitHub issues, see highlighted answers, and open the original discussion when needed.

1180 issues found

#3122November 9, 2020by tranthanhhoa1 answer
1 reactions

BUG: Missing media style on the duplicated component

Version: 0.16.27 Summary: Missing media style on the duplicated component Steps to reproduce: Try to change something on Tablet or Mobile Duplicate the changed component Expected: The duplicated component has media style Actual: The duplicate component hasn't media style

artf

Thanks @tranthanhhoa I've actually fixed it already on your other issue, that one was related to the state of rules but I've noticed the same with media, so both are ready for the next release :)

#3121November 9, 2020by sadtacoNo answers
0 reactions

FEAT/ISSUE: CSS standards

I'm going to say this is both a feature request as I get into some parts of it, but also a bit of an issue. I would say it looks bad to have a project newer than 2015 that's using px for nearly everything. People are using screensizes that are only 768 pixels on the narrowest plane, whether mobile or desktop, to 2160p...

#3115November 6, 2020by xinyufyj3 answers
1 reactions

BUG: component droped position is wrong when I changed canvas size under Absolute/Designer mode

WARNING I changed the canvas size and I drop a compent from blocks panel. The result is compent postion is wrong. By the way, the editor is under 'Absolute/Designer' mode. I read the source code of the drop part. I found the compent drag start position is not based on 'editor.Canvas.getFrameEl()'. So, is this right?

xinyufyj

@artf OK, I provide some screenshot for explaining.Sorry for my bad English.

artf

Can you provide a live demo of the issue?

artf

I close this issue as I'm planning to solve all ones related to absolute positioning here: https://github.com/artf/grapesjs/issues/3770

#3109November 2, 2020by kuhelbeher1 answer
1 reactions

BUG: CKEditor is collapsing

Hi, I have an issue with CKEditor. When the block is too narrow when I edit it CKEditor is collapsing: Is there a way to prevent this behavior? I noticed that in Grapedrop CKEditor has normal view even though the element is narrow. I'd be appreciated for any help.

artf

Hi @kuhelbeher I've defined a min-width for the RTE container via CSS :)

#3101October 28, 2020by palerdot2 answers
2 reactions

BUG: Getting Started Docs example is static

https://grapesjs.com/docs/getting-started.html - Getting started guide examples are static. All we can see is 'Hello World Component!' when different blocks, panels are added after each step. What is the current behavior? Getting started page examples are static after each step in the guide. What is the expected behav...

theSC0RP

@palerdot The examples aren't static in my browser. Here's a screenshot: <br/> <br/> As you can see in the image, there is a panel at the bottom which contains various blocks. I am able to drag and drop them on the canvas. Here's another s...

palerdot

It is working fine now. For some reason, when I raised the issue it was completely static. Will close the issue as this is not relevant right now.

#3098October 27, 2020by meyerco3 answers
2 reactions

BUG: cannot configure a video block with src=null

DescriptionThe bug is reproduced on the current demoWhat happens ? I configured my video block with src=null like this : When i drag the block i get on the generated html an base64 image on the src attribute like this : Expected behavior I want to set a block without predefined src and give the user the ability to set...

GoodPHP

Hi, If you didn't find answer here, you can contact with Devfuture Team: https://devfuture.pro/contact/ We specialise on GrapesJS.

artf

@meyerco pass an empty fallback: '' property also

meyerco

To be more precise , the bug is about loading an html that contain a video tag without src attribute . After loading this html , an scr attribute is added to video tag . This src value is a base64 image (obviously the default base64 image...

#3097October 26, 2020by vatsla12 answers
0 reactions

BUG: Custom traits not showing up

I am trying to make custom traits following the guidelines from Grapesjs Trait manager, and I have been through previous issues but the traits don't show up. Expected result: custom traits like the ones below to show up. Actual result: default traits like id and title show up. Currently, I'm using the trait manager we...

GoodPHP

Hi, If you didn't find answer here, you can contact with Devfuture Team: https://devfuture.pro/contact/ We specialise on GrapesJS.

artf

Follow the issue template please and provide a live demo of the bug

#3095October 26, 2020by marcepoblet2 answers
1 reactions

BUG: RichTextEditor is not oppening in IE11.

When in the Canvas, I double click on some text to open the RichTextEditor in IE11, it throws me an error and does not open. In all other browsers it works. Attached a vide in the pptx and the code: Presentation2.pptx richTextEditor.add('insertHtml', { icon: '<select class="placeholders-select">' + options()'</select>...

fq-selbach

I'm surprised that you could even open it in IE11 since there is so much ES6 code and heavy template usage that isn't supported at all by IE11. I'd suggest to get rid of IE11 or at least build your templates/pages/widgets in a modern brows...

devuniverse

IE ... #shivers

#3094October 26, 2020by marcepoblet2 answers
0 reactions

BUG: RichTextEditor dont save some changes from the modal

in the RichTextEditor I have added a button that opens a modal, and this modal enters certain values that I then insert into the html. But when I save these values the html does not save them. What could be the problem? I shared the code and a video in the PPTX. Presentation1.pptx editor.RichTextEditor.add('conditionI...

GoodPHP

Hi, If you didn't find answer here, you can contact with Devfuture Team: https://devfuture.pro/contact/ We specialise on GrapesJS.

artf

Probably the issue here is related to the loss of focus during the editing in the modal. You should find a way to keep the focus on the RTE (maybe creating your own modal which prevents the propagation of events), but this is not related t...

#3093October 26, 2020by tranthanhhoa1 answer
1 reactions

BUG: Missing Hover style on the duplicated component

Version: 0.16.27 Summary:Missing hover style on the duplicated component Steps to reproduce:Try to change something on Hover stateDuplicate the changed component Expected:The duplicated component has hover style Actual:The duplicate component hasn't hover style

artf

Good catch, thanks @tranthanhhoa I'll try to fix it in the next release