-
6 Feb 2008 5:26 AM #11
One of the biggest issues of this is that the tmce view does not resize when its container (in this case, the dialog window) is resized.
-
6 Feb 2008 8:10 AM #12
Hani, what browser do you use?
-
6 Feb 2008 8:13 AM #13
FF2 works for me, as well as IE 7 (but slow as all hell)
I love ext.
-
6 Feb 2008 8:18 AM #14
-
6 Feb 2008 8:33 AM #15
-
6 Feb 2008 8:36 AM #16
neenhouse, current issues in IE7:
* Height of text editing box is wrong - it's too narrow.
* Toolbars are not cut to the width of a container.
Hani, I have no Mac so I can't check it there. Later I'd simply try on Windows Safari.
tobiu, bug with color picker is clear - will fix it soon.
-
6 Feb 2008 8:54 AM #17
Xor,
Thanks for working on this plugin. As far as I can tell right now EXT (or any of the contributions) offers nothing close to what tinyMCE can do. Truthfully I'm kinda suprised that no one has worked on this before... I can't wait till its cross-browser !
Great job!I love ext.
-
6 Feb 2008 8:56 AM #18
Fix for the colors drop-downs. The following code should be added to ControlManager members.
Code:createColorSplitButton: function( id, s ){ // Call base method var res = ControlManager.superclass.createColorSplitButton.call( this, id, s ); // Modify returned result var orig = res.showMenu; res.showMenu = function( x, y, px ) { orig.call( this, x, y, px ); Ext.fly( this.id + '_menu' ).setStyle( "z-index", 12000 ); } return res; }
-
6 Feb 2008 2:58 PM #19
Poking around the example with Safari (v3) on OSX -- all seems to work
-
6 Feb 2008 3:23 PM #20
it does work, but it does not seem to notice when its container is resized.
So when you first open it up by clicking on the button in the example, there is a horizontal scrollbar. Resizing the dialog can get rid of this, but when you shrink the horizontal scrollbar shows up again. So the tmce editor area doesnt change size, even though the dialog its in does.


Reply With Quote


