我的工作列表控件和一個列有刪除鏈接,我使用HTMLTemplate如下格式調用Pagecode的JavascriptSitecore的8說話UI從HTMLTemplate鏈接
define(["sitecore", function (Sitecore) {
var DestinationRules = Sitecore.Definitions.App.extend({
initialized: function() {
this.processDestinationRules();
},
showConfirmation: function() {
alert('here');
},
});
return DestinationRules;
});
出於某種原因,我無法調用showConfirmation()。它說沒有定義。我什至嘗試Sitecore.Speak.app.showconfirmation()但不工作。
我盡了最大努力在網上搜索,但沒能找到解決,通過嵌入到HTMLTemplate控件調用函數太大的幫助。
我的下一步是調用DialogWindow。
請你能不能幫我上面的語法。提前致謝。