nkuhta
nkuhta

Reputation: 11148

Extjs4 and TinyMCE

I found menual for ExtJS3, and there was ux component of TinyMCE. I want to use it in ExtJS4. How can I do it and where to find manuals about using TinyMCE in ExtJS4?

Upvotes: 3

Views: 2317

Answers (4)

Qtx
Qtx

Reputation: 21

The following solution covers many issues of the integration:

  • Initialization in an initially visible and in an initially invisible tab.
  • Correct place occupation by the initialization in any ExtJS layout.
  • Correct resizing by the resizing of the underlying text area.
  • Activation and deactivation of the WYSIWYG editor. Keeping of the cursor position by switching to the HTML text modus.
  • Enabling and disabling of the WYSIWYG editor control.
  • Changing of WYSIWYG settings and CSS file for the editable contents on the fly.
  • Pre-formatting of the HTML text in visible and invisible modus.
  • Focusing of the WYSIWYG editor control.
  • Marking invalid.
  • Tracking dirty state.
  • Skin "extjs" and the native ExtJS windows for the editor inline popups.
  • Storing and restoring cursor position by inserting of a place holder over a popup window.

http://www.point-constructor.com/en/tinyta/

Upvotes: 2

byte_slave
byte_slave

Reputation: 1378

Harald Hannek has been doing a very nice work integrating TinyMCE and Extjs4, also he has really cool ux plugins that might be of the interest of anyone, so I think it's never too late to reply :) Check it in github https://github.com/harrydeluxe/extjs-ux

Upvotes: 1

sha
sha

Reputation: 17860

I don't think they included anything for TinyMCE in ExtJs4. They do have standard HTML editor component though.

Upvotes: 2

dougajmcdonald
dougajmcdonald

Reputation: 20067

The docs for ExtJS 4 are linked from the top right of their website under the navigation option 'documentation',

here's a direct link too: http://docs.sencha.com/ext-js/4-0/

Upvotes: 0

Related Questions