Bonjour,

voici mon problème j'ouvre une boite de dialogue que je remplis avec un load :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
$("#bd").load("load/page.php");
Dans cette page j'ai un textarea chargé en ckeditor :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
$(document).ready(function () {	
 
	// Ckeditor					
		var config = {
			toolbar:
			[
				['Source','-','Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat','-','Link','Unlink'],
				['NumberedList','BulletedList','-','Outdent','Indent','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
				'/',
				['TextColor','BGColor'],[ 'Image','Table','HorizontalRule','Smiley','SpecialChar' ],['Styles','Format','Font','FontSize']
			]
		};
 
		$('.ckeditor_page').ckeditor(config);
 
});
A la première ouverture de ma boite de dialogue ok ca marche à la 2ème le textarea est invisible ...

Est ce un problème connu ou pas ??