ExtJS Integration of CKEditor - extjs

We plan to use ExtJS with CKEditor.
I saw that there is a port of TinyMCE for ExtJS.
Is it be possible to write a CKEditor wrapper for ExtJS?
What I am concerned most about is the event handling (ExtJS defines its own implementation).
I found some information about the TinyMCE port for ExtJS: https://github.com/Qtx/TinyMCETextArea5/blob/master/doc/instructions.pdf
Thank you for sharing your experience about this topic in advance.

There is an extension for ExtJS 3 available on GitHub:
https://github.com/tocco/extjs3-ckeditor-extension
We use it in production, it works fine.

Related

Include Third party Charting plugins with ExtJs 5

I need to use thirdparty charting apps (like highcharts) in my Extjs 5 app.
Need inputs on how this can be achieved. Please provide any guides / plugins available.
Thanks
You can use wrapper for extJs for highcharts.

cakePHP custom textarea input fields (WYSIWYG)

I'm new in cakePHP and I need to have a custom input field in my blog post.
I explored:
ckeditor - problematic in file uploading from directory.
TinyMCE - Having problem in integrating new version to cakePHP 2.3.8.
Can someone direct me to some up-to-date sample of these editors? or any guide how to make my own custom editor. Or any suggestions what other alternatives I can use?
So I hope I got that right: you need a WYSIWYG editor on your CakePHP blog.
You do not want to use ckeditor as you are experiencing file uploading problems.
After a quick search fpr "wysiwyg cakephp" I found several links, including a "setup guide":
http://bakery.cakephp.org/articles/galitul/2012/04/11/helper_tinymce_for_cakephp_2
More on tinymce helpers...
http://bakery.cakephp.org/articles/daibach/2008/07/15/tinymce-helper-1
Another link collection:
http://bakery.cakephp.org/articles?by=tinymce
if you are looking for another WYSIWYG editor try the following link list:
http://bakery.cakephp.org/articles?by=wysiwyg
Or this editor:
https://github.com/josegonzalez/cakephp-wysiwyg-helper
Hope that helps...

extjs grid referesh icons not displaying

I'm using using Extjs 4.0.7 version.
Html editor icon images, grid refresh and paging button images are not displaying.
I checked another working setup, there i found x-tbar-loading class for grid refresh icon
but in the setup i'm using on my system, the above calss is not found. But the css and js files are same as the working setup.
Check to make sure you included the resources shipped with the distribution.
Also there is really no need to hang back to 4.0.7 - lots of issues have been fixed in 4.1.1
I was having the same issue using Ext JS 4.2.1. My application skeleton was created using Sencha CMD. In order to get things working again, I need to rebuild the application using the following commands. It seemed to need both:
sencha app build
sencha app refresh
Not sure of the exact order, but after doing that, I was able to get things working properly.
You need add
Ext.tip.QuickTipManager.init();

Silverlight with Extjs

I haven't worked with extJS and Silverlight. Considering a requirement that I have to look into - is there a way to host Silverlight applications in extJS.
I checked out the Sencha forums, but did not find any direction.
Hope any one of you might have dealt with this issue earlier ?
Regards
Ext-JS is a JavaScript framework that allows you to create HTML pages dynamically. Silverlight is a plugin that embeds interactive content, packaged as a XAP, within an HTML document. This embedding is achieved via the HTML object tag.
You can certainly use Ext-JS to dynamically add object tags to pages and dynamically load XAP files. So I would say the answer is, yes, you can host Silverlight content using ExtJS.

Using Extjs in Firefox Extension

I'm developing a Firefox extension, and need to work with an ExtJS component on a page. Has anyone been able to do this? I've loaded the ExtJS Javascript files in my XUL, but doing something like Ext.getCmp('my-button').disable() has no effect. Do I need to somehow configure the Ext object with the document object? Any other suggestions?
Just a shot in the dark but I know when I wrote Selenium testing a while back I had to use window.Ext.getCmp('my-button'). maybe that will work.

Resources