#3039September 22, 2020by generalsystems1 answer
the 3 issues I'm facing using grapesjs are: -- I can't render a react element inside the canvas: I add a component in the canvas and initiate the component js file in the canvas conf object but it didn't work. -- I can't add a color in the background layers -- when a tag a component to be unremovable it can be removed...
artf
Follow the issue template please
#3034September 21, 2020by makbariNo answers
Version: current Are you able to reproduce the bug from the demo? [X ] Yes [ ] No What is the expected behavior? The single textnode in any component (e.g. text, cell, ...) should be parsed as a textnode component. What is the current behavior? Currently, a single textnode in a component is parsed as only a content in...
#3033September 20, 2020by krishnaeverestengineering1 answer
<img width="949" alt="Screenshot 2020-09-20 at 10 12 52 AM" src="https://user-images.githubusercontent.com/55732888/93694492-ee644100-fb29-11ea-8854-be8d6c7198e3.png"> I moved selected component to top (see in image). So removed/onrender callback triggered for the moved component. But callback is not triggered for bel...
artf
This is correct behavior, the event is triggered only on updated/moved component otherwise all children would emit events (which is definitely not what we want). You can also try to see if setting the listener on the parent might help you...
#3027September 16, 2020by gpmonch3 answers
Are you able to reproduce the bug from the demo? No, in the image asset manager in the demo there is no option to remove images. What is the expected behavior? When removing an image, if a user decides to re-upload it, before closing the asset manager dialog he should be able to. Describe the bug detailed Once a user...
artf
Hi @gpmonch, I'm not able to reproduce it, after deleting the asset I'm able to reupload it again. Are you able to provide a live example?
no-response[bot]
This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take ac...
gpmonch
Dear Artur, Thank you so much for your reply, I'm sorry for only responding now, I've made a screen recording using webex of reproducing the bug in my local environment, Please let me know if this helps clear the issue, any help would be h...
#3026September 16, 2020by pucksart1 answer
Version: 0.16.22 Are you able to reproduce the bug from the demo? Yes What is the current behavior? Try to select a text or drag its block, now double click on it. You will see 2 Ckeditors <img width="739" alt="Schermata 2020-09-16 alle 10 47 14" src="https://user-images.githubusercontent.com/4941395/93315251-1b9faf00...
GoodPHP
Hi, If you didn't find answer here, you can contact with Devfuture Team: https://devfuture.pro/contact/ We specialise on GrapesJS.
#3023September 15, 2020by ditschedevNo answers
Version: latest You can get the version by typing grapesjs.version into the console Are you able to reproduce the bug from the demo?[x] Yes[ ] No What is the expected behavior? All translations should be german and grammatically correct. Describe the bug detailed Some translations are not german and some are not real...
#3018September 11, 2020by dharmatv3 answers
Version: 0.15.9 Are you able to reproduce the bug from the demo? Yes What is the expected behavior? Don't refresh the page after clicking on import buttion Describe the bug detailed I have included this component(grapesjs) in b-form. In which we have an import option right so I have clicked on that button it will refr...
dharmatv
Thanks @artf I got solution, please check following solution if anyone need Sol:
artf
Probably it submits the page because the import button doesn't have type="button" so it acts as type="submit" inside a form element
dharmatv
@artf I know that, but how can I add a type for the import button note: I know how to add dynamically by using js. Without that, any other solution in grapesjs
#3015September 10, 2020by chongma2 answers
Version: 0.16.22 Are you able to reproduce the bug from the demo? [] Yes [ ] No What is the expected behavior? the exported html should be responsive Describe the bug detailedclick </> view code at the top of the demo, and then click the "Export to ZIP"unzip the file and click index.htmlresize the window using the chr...
artf
Well for sure the export plugin could be configured better but for sure it's not the core issue and not even the real purpose of the demo
chongma
This is my first time using grapes. If the template resizes well in the grapes editor but I can't export the html then how to use the template?
#3014September 10, 2020by Lerdouille3 answers
Hi, i'm trying to make custom components composed with other components. No problem to do that. I'm facing an issue when i want to move the whole component. Here is my test component: it looks like this on the editor : my issue is when i want to move the component, i can move it when i click on the blank space after t...
artf
No, it's all as defined. You're trying to drag a non-draggable component so, the behavior is correct
Lerdouille
Hi, thank you for the answer. Well, i know my "link" component is not draggable, i set it that way (to specially not drag the link outside the whole component) But it's also set as non selectable, so if i click on it, and i want to drag th...
#3009September 8, 2020by BillTheGoat3 answers
Version: 0.16.22 Are you able to reproduce the bug from the demo? [ ] Yes [ X] No - requires editing js. What is the expected behavior? wrapper component should not be droppable once droppable attribute is set to false. What is the current behavior? Nothing happens when this attribute is set. Describe the bug detailed...
RJCAM
Hi @BillTheGoat try this after init:
RJCAM
I think it's because the wrapper doesn't make part of DomComponents. DomComponents are only the components inside of the wrapper. :smile:
BillTheGoat
Hmmm. I tried this because the API docs list the DomComponents.getWrapper() as its first function, and it does apply attributes as seen in my sandbox above. It was doubly odd to me because it seems like the editor.getWrapper() function is...