Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ckeditor inside a qtip
19th November, 10:39
Post: #1
ckeditor inside a qtip
I'm using a modal qtip in order to do an update form. In tha form i have a textarea which i try to transform in a wysiwyg editor with ckeditor but it doesn't work because the editor doesn't show in the qtip.
has anyone tried something like that before?
Find all posts by this user
Quote this message in a reply
19th November, 19:18
Post: #2
RE: ckeditor inside a qtip
Cristina, make sure you fire the ckeditor init call within the render event callback:

JS Code
$('.selector').qtip({
   events: {
      render: function(event, api) {
         // Find the text area in the tooltip content
         $('textarea', api.elements.content).ckeditor(); // Something like this...
      }
   }
});

Craig Thompson
Web Developer / Designer
Craigsworks
http://www.craigsworks.com
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Solved] HowTo: Open a nyroModal window inside qTip SerNeo 3 731 21st November 17:55
Last Post: SerNeo



User(s) browsing this thread: 1 Guest(s)