CreateMyBB Support Forums
Pasting into post not working - Printable Version

+- CreateMyBB Support Forums (https://support.createmybb.com)
+-- Forum: CreateMyBB Support (https://support.createmybb.com/forumdisplay.php?fid=5)
+--- Forum: General Support (https://support.createmybb.com/forumdisplay.php?fid=6)
+--- Thread: Pasting into post not working (/showthread.php?tid=2956)



Pasting into post not working - tartist - 10-06-2019

In the MyBB forum that I am moving away from my users select a block of cells in Excel and paste it into a forum post, simply using Ctrl-C and Ctrl-V. The result is an unformatted text list. In my CreateMyBB forum editor this behaviour results in a formatted block which when posted changes to hundreds of text characters tagged with [img] [/img]. Actually it was working a few days ago.

How it should work:
Excel cells copied with ctrl-c: 
[Image: 6Eql4ro.png]
Pasted into old forum editor with ctrl-v. Note, it's become a plain text list:
[Image: CwHWJmx.png]
But here's the same pasted into the CreateMyBB forum editor - note formatting:
[Image: HXyQb7Z.png]
And then after posting it. Note the image tags:
[Image: wSbLPx4.png]
Any help will be much appreciated  Shy

What I've tried:
I turned off bbcode which worked, but this also disabled [img], [b], etc which I need.


RE: Pasting into post not working - Jon - 10-06-2019

The data in the image tag looks like a png file that is copied?


RE: Pasting into post not working - liondog72 - 10-07-2019

Try clicking on the "view source" button (last button on the row) before pasting in the Excel cells.


RE: Pasting into post not working - tartist - 10-07-2019

(10-06-2019, 07:59 PM)Jon Wrote: The data  in the image tag looks like a png file that is copied?

No, its just three numbers in three cells in a spreadsheet, copied and pasted, no images involved. I just did the same on the old forum and it still works there. When I first registered on your site it worked here too.

Edit: as a "proof" that it wasn't a png I pasted it between tags, it pastes text correctly. Then I deleted the php tags and the correct text remains there. Can't ask my users to do that though Big Grin


RE: Pasting into post not working - tartist - 10-07-2019

(10-07-2019, 02:33 AM)liondog72 Wrote: Try clicking on the "view source" button (last button on the row) before pasting in the Excel cells.

Thanks liondog, although that works it's not something I could rely on my users doing each time.


RE: Pasting into post not working - liondog72 - 10-07-2019

(10-07-2019, 09:01 AM)tartist Wrote:
(10-07-2019, 02:33 AM)liondog72 Wrote: Try clicking on the "view source" button (last button on the row) before pasting in the Excel cells.

Thanks liondog, although that works it's not something I could rely on my users doing each time.

For the time being you could go into Admin CP > The users account settings > check "Put the editor in source mode by default" > Save settings. Or you could get them to do the same themselves via their user CP.


RE: Pasting into post not working - tartist - 10-07-2019

(10-07-2019, 10:08 AM)liondog72 Wrote:
(10-07-2019, 09:01 AM)tartist Wrote:
(10-07-2019, 02:33 AM)liondog72 Wrote: Try clicking on the "view source" button (last button on the row) before pasting in the Excel cells.

Thanks liondog, although that works it's not something I could rely on my users doing each time.

For the time being you could go into Admin CP > The users account settings > check "Put the editor in source mode by default" > Save settings. Or you could get them to do the same themselves via their user CP.

liondog, you are a gem. That's just what I need, at least until some genius can find a way of making it the default. Thanks!


RE: Pasting into post not working - tartist - 10-17-2019

(10-07-2019, 11:05 AM)tartist Wrote:
(10-07-2019, 10:08 AM)liondog72 Wrote:
(10-07-2019, 09:01 AM)tartist Wrote:
(10-07-2019, 02:33 AM)liondog72 Wrote: Try clicking on the "view source" button (last button on the row) before pasting in the Excel cells.

Thanks liondog, although that works it's not something I could rely on my users doing each time.

For the time being you could go into Admin CP > The users account settings > check "Put the editor in source mode by default" > Save settings. Or you could get them to do the same themselves via their user CP.

liondog, you are a gem. That's just what I need, at least until some genius can find a way of making it the default. Thanks!
Got it! 
You can force it globally regardless of UserCP setting in templates -> default templates -> ungrouped -> codebuttons
Comment out the sourcemode variable with // and put MyBBEditor.sourceMode(true);

Code:
MyBBEditor = $("#{$bind}").sceditor("instance");
//{ $ sourcemode }
  MyBBEditor.sourceMode(true);