ExtJS:如何在特定的`Window`组件上加载其他脚本?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ExtJS:如何在特定的`Window`组件上加载其他脚本?相关的知识,希望对你有一定的参考价值。
我试着创建一个Window
,它将显示AddToAny share buttons。我需要在此窗口下设置AddToAny所需的script
。我在社交媒体按钮中搜索类似的问题。
- 我了解到
Mashup
课程可以奏效。我创建了一个mixin
类但不幸的是这不起作用。 - 同样在项目文件下保存相关的JS库,并尝试通过
html
配置调用它,但这也不起作用。
我怎样才能实现我的目标?
//Here is related function.
onMoreShare: function () {
new Ext.window.Window({
// requires: ['MyApp.mixins.ShareApps'], //Tried to load JS file to Window
title: 'More...',
autoShow: true,
modal: true,
padding: 20,
html: '<a class="a2a_dd" href="https://www.addtoany.com/share"><img src="https://static.addtoany.com/buttons/share_save_171_16.png" width="171" height="16" border="0" alt="Share"></a>
' +
// Mixin didn't work; tried original code...
// '<script async src="https://static.addtoany.com/menu/page.js"></script>
' +
// Mixin didn't work; tried to call js file through project
//'<script type="text/javascript" src="../../../resources/js/addToAny.js"></script>
'
});
}
//Created this `Mashup` based class to load related JS file.
Ext.define('MyApp.mixins.ShareApps', {
mixins: ['Ext.mixin.Mashup'],
requiredScripts: [
'//static.addtoany.com/menu/page.js'
]
});
答案
看看这个小提琴:
Ext.application({
name : 'Fiddle',
launch : function() {
Ext.widget('window', {
width: 300,
height: 250,
padding: 5,
title: 'Hello World',
html: '<div class="a2a_kit a2a_kit_size_32 a2a_default_style"> '+
'<a class="a2a_dd" href="https://www.addtoany.com/share"></a> '+
'<a class="a2a_button_facebook"></a> '+
'<a class="a2a_button_twitter"></a> '+
'<a class="a2a_button_google_plus"></a> '+
'</div>'
}).show();
}
});
索引页面:
<html>
<head>
<script async src="https://static.addtoany.com/menu/page.js"></script>
</head>
</html>
以上是关于ExtJS:如何在特定的`Window`组件上加载其他脚本?的主要内容,如果未能解决你的问题,请参考以下文章
ExtJs如何在Window窗口中加载页面上的GridPanel??
ExtJs 3.4 - 如何提示预加载的 textField 组件的内容