Medium editor wrong includes order

By the way, thanks @Tom, just ran into this problem, took an existing TextArea and hit the button in App Connect to make it a Medium Editor and it would not show the formatting options in the browser, and no browser errors either.

Auto added order

	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/dmxMediumEditor.css" />
	<script src="/dmxAppConnect/dmxMediumEditor/dmxMediumEditor.js" defer=""></script>
	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/medium-editor.css" />
	<script src="/dmxAppConnect/dmxMediumEditor/medium-editor.js" defer=""></script>
	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/themes/default.css" />

Working Order

	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/dmxMediumEditor.css" />
	<script src="/dmxAppConnect/dmxMediumEditor/medium-editor.js" defer=""></script>
	<script src="/dmxAppConnect/dmxMediumEditor/dmxMediumEditor.js" defer=""></script>
	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/medium-editor.css" />
	<link rel="stylesheet" href="/dmxAppConnect/dmxMediumEditor/themes/default.css" />

Paul - I moved this to new topic. Please always post as new issues and do not revive old topics as usually those are old and already solved issues

Sorry George, I should have moved it, or made a new one, my bad, the forum is such a wealth of information that I read so often that when I run into issues like this, I think, wait, I recall reading something about that, then search, and invariably land up replying on the post where I found the answer. Sorry about that.

I must tell you though, if we had an active forum like this when we were DMXing, life would have been far simpler, well done Wappler for this awesome repository of information.

The automatics includes reordering issue is a brand new one from 2 updates back.

As we totally rewrote the way we include frameworks and components for fast working, reordering afterwards got a bit broken.

We hope to fix it soon

1 Like

This should be fixed now in Wappler 2.5.5

This topic was automatically closed after 2 days. New replies are no longer allowed.