admin管理员组文章数量:1345903
In my aspx page:
<script type="text/javascript">
Ext.onReady(function() {
Ext.get('mb1').on('click', function(e) {
Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?', showResult);
});
function showResult() {
Ext.example.msg('test');
</script>
<div>
<asp:Button ID="mb1" runat="server" Text="Button" />
</div>
I got error message "ext is undefined". Can anyone help me?
In my aspx page:
<script type="text/javascript">
Ext.onReady(function() {
Ext.get('mb1').on('click', function(e) {
Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?', showResult);
});
function showResult() {
Ext.example.msg('test');
</script>
<div>
<asp:Button ID="mb1" runat="server" Text="Button" />
</div>
I got error message "ext is undefined". Can anyone help me?
Share Improve this question edited Jun 13, 2014 at 19:01 JasonMArcher 15k22 gold badges59 silver badges53 bronze badges asked Nov 27, 2009 at 6:09 DhanrajDhanraj 751 silver badge3 bronze badges 1- Have you included all the necessary script files? – rahul Commented Nov 27, 2009 at 6:12
4 Answers
Reset to default 8You have to include the js file like
<script type="text/javascript" src="extjs.js"></script>
before using any of the functions.
you should download the extjs framework from the site itself and host it locally if you can. http://extjs.
- Is it possible that you used "
ext
" somewhere instead of "Ext
" (wrong capitalization)? - you don't seem to be closing your functions with "
}
"
Once you get Ext working, you'll probably want to use the button's client ID instead of the code-behind ID:
...
Ext.get('<%=mb1.ClientID%>').on('click', function(e) {
...
Include below all three file in your file ext-all.css,ext-base.js,ext-all-debug.js
本文标签: javascriptextjs is undefinedStack Overflow
版权声明:本文标题:javascript - ext.js is undefined - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743817551a2544196.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论