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
comme l'editor de type dijit.Editor
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);
Merci d'avance.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14new 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);







Répondre avec citation




Partager