最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ext.js is undefined - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

4 Answers 4

Reset to default 8

You 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.

  1. Is it possible that you used "ext" somewhere instead of "Ext" (wrong capitalization)?
  2. 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

发布评论

评论列表(0)

  1. 暂无评论