小さなmce用に動的に生成されたアイコンリストを作成しようとしています。次のコードで関数を呼び出す、関連するすべてのphp関数を作成しました。
$.post(url_file, {
content_name: $class_name,
page_url: filePath,
app_code: app_code
},
function(data){
var buttonlist = data;
});
これらのアイコンを取得するには、上記の3つのパラメーターを渡す必要があります。今私は持っていbuttonlist
ます。試しdocument.write(buttonlist)
ましたが、missing : after property id
エラーが発生します。私はこれを;内に印刷しようとしています。
tinyMCE.init({
mode : "exact",
elements : "elm1",
theme : "advanced",
plugins : "Archiv,pagebreak,safari,spellchecker,pagebreak,
style,layer,table,save,advhr,advimage,advlink,
emotions,iespell,inlinepopups,insertdatetime,preview,
media,searchreplace,print,contextmenu,paste,
directionality,fullscreen,noneditable,visualchars,nonbreaking,
xhtmlxtras,template",
--> document.write(buttonlist);
theme_advanced_toolbar_location : "top",
この値をtinymceコード内に出力する方法を知っていますか?非常に感謝しています。