-
25 Jul 2012 5:29 AM #41
Bug with syncEditorSize when field has a label
Bug with syncEditorSize when field has a label
When you have a fieldLabel next to the editor, the calculatd width is too wide. You have to subtract the label width and padding. See code below.
Code:me.on('resize', function (field, width, height, oldWidth, oldHeight, eOpts) { if (field.hasVisibleLabel()) { width = width - (field.labelWidth + field.labelPad); } me.lastWidth = width; me.lastHeight = height; if (!me.noWysiwyg && !me.wysiwygIntialized) { me.initEditor(); } else { me.syncEditorSize(me.lastWidth, me.lastHeight); } }, me);
-
25 Jul 2012 5:33 AM #42
Thanks for the report. I will do this in the next release.
-
25 Jul 2012 5:46 AM #43
-
25 Jul 2012 10:52 AM #44
links?
links?
I'm very new to TinyMCE but definitely I will use for a simple help editor (yet another!).
But, why demo hasn't links feature?
Do I have to write a plugin to handle them?
Regards.UI: Sencha Architect 2.x / ExtJS 4 MVC
Server side: EJB 3.1 / CDI / JPA 2 / JAX-RS / JasperReports
Application Server: Glassfish 3.1.x
Databases: Oracle 10g & 11g / DB2 9 & 10 / Firebird 2.5
If you like my answer please vote!
-
25 Jul 2012 11:05 AM #45
-
26 Jul 2012 7:29 AM #46
New version 1.9
- Fixed bug with the width of the editor in the case if there is a label.
- Fixed bug with the width of the editor in the case if there is a label.
-
26 Jul 2012 9:01 PM #47
Problem in fullscreen-mode
Problem in fullscreen-mode
All dialog windows shown under the main fullscreen-mode window.
-
27 Jul 2012 12:27 AM #48
JuneEk,
I checked this. It is a really hard problem. TinyMCE sets too high z-index in the full mode. To solve it, I have to understand and adjust z-index management of the ExtJS windows.
I try to do this next time.
-
28 Jul 2012 2:20 PM #49
This bug still in 4.1.1?
I have the TinyMCETextArea inside a form in center region of ViewPort but sometimes when I shrink west or east area the TinyMCETextArea's editor just disappears. Note that TinyMCETextArea's tool bar stills in place.
I'm using TinyMCETextArea's 1.9
Regards.UI: Sencha Architect 2.x / ExtJS 4 MVC
Server side: EJB 3.1 / CDI / JPA 2 / JAX-RS / JasperReports
Application Server: Glassfish 3.1.x
Databases: Oracle 10g & 11g / DB2 9 & 10 / Firebird 2.5
If you like my answer please vote!
-
28 Jul 2012 11:36 PM #50
ssamayoa,
could you provide a test.html - simple example which demonstrates the problem? I can then debug the issue and try to fix.


Reply With Quote
