我正在为以下方式工作的sitecore富文本编辑器编写扩展程序。
无论如何我都无法检测到有关当前正在编辑的项目的以下重要信息。有人可以告诉我如何在javascript中获取此信息:
RadEditorCommandList["MyCommand"] = function (commandName, editor, tool) {
var dialogUrl = "/sitecore%20modules/MyPluginModule/RichEditorDialog.aspx?";
dialogUrl+= "Id=" + scItemID ;
dialogUrl+= "&language=" + scLanguage;
//////////////////////////////////////////////////////////
// UNKNOWN -- where do I get this information from?
//////////////////////////////////////////////////////////
dialogUrl+= "&database=UNKNOWN";
dialogUrl+= "&version=UNKNOWN";
editor.showExternalDialog(
dialogUrl,
null,
500, // width
200, // height
function(sender, data) {
updateRichTextEditorWithSelectedData(editor, data);
},
null, // callback args
"Dialog Title",
true, // modal
Telerik.Web.UI.WindowBehaviors.Default,
false, // showStatusBar
true // showTitleBar
);
};
答案 0 :(得分:0)
希望这有帮助。