vote up 0 vote down star

So I managed to get a page with Ajax ui.tab and in one of the tab I put jWYSIWYG textarea plugin. Unfortunately, I can only see normal textarea.

However, accessing the page directly (ie. not using the ajax tab) works.

What happened?

p/s: I'm new to jQuery / JavaScript / AJAX / CSS (if that even matter)

flag

This post is over a month old and still hasn't been answered. I've found that when posting for help, the more info you give, the more likely people are to help you. Someone even posted asking for the code all in one place (one-line or not). You turned him down and you still expect others to help? – Jonathan Tran Oct 16 '08 at 18:41

3 Answers

vote up 2 vote down check

I expect the problem is that the new html is being inserted into the DOM when the ajax call completes, but isn't being hooked up to anything with jQuery.

Normally you attach all your jquery goodness in a document ready or onload event, when the page initially loads. However, your textarea is not on the page when the page first loads.

When your ajax call returns, the textarea is added to the page. At this point you need to call whatever javascript is needed to hook it up to a jWYSIWTG control.

There is a new(ish) feature in jquery that means you can still set everything up in document ready (called live), but you may find it simpler just to call the hookup code in your ajax success handler.

link|flag
vote up 1 vote down

Your answer would be best served by posting a link to the HTML file (and any custom JavaScript files of your own) in question. If the file isn't hosted, you can paste the source code at http://pastebin.com/, and post the link here.

link|flag
I took the examples directly from their site. Pretty simple 1 liners for each. They both work independantly but not when jWYSIWYG inside a tab. – SyaZ Sep 28 '08 at 10:06
vote up 1 vote down

My solution is fix dialog width and height blind with event open dialog. Blind event close dialog by remove div.wysiwyg which auto-create by plugin.

$('#dialogContent').bind('dialogopen', function(event, ui) {
	$('textarea').wysiwyg( {
		css :burl + 'public/css/text.css',
		controls : {
			separator00 : { visible : false },
			separator01 : { visible : false },
			separator02 : { visible : false },
			separator03 : { visible : false },
			separator04 : { visible : false },
			separator05 : { visible : false },
			separator06 : { visible : false },
			separator07 : { visible : false },
			separator08 : { visible : false },
			separator09 : { separator : false},
			insertOrderedList : { visible : true },
			insertUnorderedList : { visible : true },
			undo: { visible : true },
			redo: { visible : true },
			justifyLeft: { visible : true },
			justifyCenter: { visible : true },
			justifyFull: { visible : true },
			subscript: { visible : false },
			superscript: { visible : false },
			underline: { visible : true },
			increaseFontSize : { visible : false },
			decreaseFontSize : { visible : false },
			removeFormat : { visible : false },
			h1mozilla : { visible : false },
			h2mozilla : { visible : false },
			h3mozilla : { visible : false },
			h1 : { visible : false },
			h2 : { visible : false },
			h3 : { visible : false }
		}
	});
	$('.wysiwyg').css( {
		'width' :'350px'
		,'height' :'180px'
	});
	$('.wysiwyg iframe').css( {
		'width' :'350px'
		,'height' :'150px'
	});
}).bind('dialogbeforeclose', function(event, ui) {
	$('.wysiwyg').remove();
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.