-
21 May 2011 5:33 AM #441
-
2 Jun 2011 10:57 PM #442
I notice some problem with the TinyMCE when I use firefox 4, it's fine if I use IE or Chrome, the scrollbar gets cut when the content in the richtext editor is too long. Please take a look at the attached screenshot. That's taken from TinyMCE website.
-
8 Jun 2011 1:42 PM #443
Hi,
I have a set of named bookmarks to different urls in the application (for each user). Is there any way in the 'link' creating dialog of the tinymce form to offer a way to select from one of the bookmarks to populate the link field?
Some kind of custom work I suppose, if at all possible.
Andy
-
10 Jun 2011 5:13 AM #444Sencha - Community Support Team
- Join Date
- Nov 2008
- Location
- San Diego, Peoples' Republic of California
- Posts
- 2,040
- Vote Rating
- 7
SilkJS - Server Side JavaScript Swiss Army Knife and HTTP Server
Powerful, flexible, advanced charting for ExtJS and Touch: http://zingchart.com
Javascript rocks. Even on the server-side:
ExtJS Forums' Server-Side Javascript Social Group
-
10 Jun 2011 5:14 AM #445Sencha - Community Support Team
- Join Date
- Nov 2008
- Location
- San Diego, Peoples' Republic of California
- Posts
- 2,040
- Vote Rating
- 7
SilkJS - Server Side JavaScript Swiss Army Knife and HTTP Server
Powerful, flexible, advanced charting for ExtJS and Touch: http://zingchart.com
Javascript rocks. Even on the server-side:
ExtJS Forums' Server-Side Javascript Social Group
-
22 Jun 2011 3:55 AM #446
I get that same issue of the bottom of the tinyMCE control being cut off in all browsers...and I'm not using frame: true (or false for that matter).
Looks like the control is being passed the height which it uses to size the text area of the control...before sticking the header bar on which pushes the text box out the bottom of the control.
-
19 Jul 2011 11:34 PM #447
I tried the anchor: 99% or something, yet it still doesn't work. I found that there's a similar thread discussing this issue on another forum.
http://stackoverflow.com/questions/6273126/tinymce-pressing-tab-causes-the-toolbar-to-disappear
The thread starter seems to suggest removing the resizing function from TinyMCE itself, however, I couldn't figure out which line to be removed though. Anyone with the solution, please share with us.
-
21 Jul 2011 3:49 AM #448
I had the same issue using TinyMCE 3.4.3.2, Ext.ux.TinyMCE 0.8.5 and Ext 3.2.1.
I figured that in the function '_setEditorSize' in Ext.ux.TinyMCE the Toolbar Element of TinyMCE Editor is not selected therefore the iframe height is not correctly calculated..
replacing line 372-375 in Ext.ux.TinyMCE.js with the following code worked fine for me:
I hope this will help you too..Code:// Set toolbar div width var edTable = Ext.get(this.ed.id + "_tbl"), edIframe = Ext.get(this.ed.id + "_ifr"), //edToolbar = Ext.get(this.ed.id + "_xtbar"); edToolbar = this.positionEl.child('.mceToolbar');
-
17 Aug 2011 3:30 AM #449
aa0
I agree with you about the semanitcs of the form field. And this is definitely my bug, that I fire event with inner editor. But you also break the semantics, when you wire "keypress" and other such events to Ext "change" event. It is clearly stated that "change" occurs before "blur". And if you want to listen for keyboard events, then wire up to those events explicitly.
-
17 Aug 2011 7:33 AM #450
Version 0.8.6
Version 0.8.6
Guys, sorry for being soo slooow, but I finally made an update. You can download it from our site:
http://blogs.byte-force.com/media/p/44074.aspx
Fixed problems, reported by you in this thread. (Most of them, I hope.) I also adapted your suggestions, though some of them were refactored.
Highlights:
- FIXED: Size calculation for new version of tinyMCE
- Component now doesn't fire "blur" when additional dialogs are opened from editor's toolbar.
- FIXED: Component registers two instances of the same editor in the tinyMCE during render.
- Added internationalization support to alert and confirm dialogs.
- "keypress", "keydown", "keyup" editor events got rerized. "change" rized on change, undo and redo.
- function (b){var a=this.indexOf(b);if(a!=-1){this.splice(a,1)}return this}
N.B. This is still for OLD EXT. Sorry, new one will come later.



Reply With Quote
