Salut à tous,

Est ce que possible de passer un fichier css comme attribut au widget dijit.InlineEditBox avec un editor de type dijit.form.TextBox
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
	new dijit.InlineEditBox({
						editor: "dijit.form.TextBox",
						onChange : dojo.hitch(this, function(value){
							//.....
						})
					},zone);
comme l'editor de type dijit.Editor
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
	new dijit.InlineEditBox({
					      editor  : "dijit.Editor",
					      renderAsHtml: "true",
					      autoSave : "false",
					      editorParams:{
					       height  : '',
					       extraPlugins: 
					        ['dijit._editor.plugins.AlwaysShowToolbar'],
					       styleSheets:"/css/site.css"
					      },
					      onChange : dojo.hitch(this, function(value){
					      })
					     },zone);
Merci d'avance.