javascript - Inherit from jQuery UI dialog and call overridden method - Stack Overflow

The simple code below describes my question (at least I hopse so):$.widget("ui.mydialog", $.u

The simple code below describes my question (at least I hopse so):

$.widget("ui.mydialog", $.ui.dialog, {
  _create: function() {
    // How to call _create method of dialog?
  }
});

I tried to call $.ui.dialog.prototype._create() from within the above create method, but get the below error in Firebug:

this.element is undefined
this.originalTitle = this.element.attr('title');
jquery...5667348 (line 5864)

How else can I call that "super" method?

jQuery UI version 1.8.8

The simple code below describes my question (at least I hopse so):

$.widget("ui.mydialog", $.ui.dialog, {
  _create: function() {
    // How to call _create method of dialog?
  }
});

I tried to call $.ui.dialog.prototype._create() from within the above create method, but get the below error in Firebug:

this.element is undefined
this.originalTitle = this.element.attr('title');
jquery...5667348 (line 5864)

How else can I call that "super" method?

jQuery UI version 1.8.8

Share Improve this question asked Jan 25, 2011 at 2:42 medihackmedihack 16.6k21 gold badges91 silver badges140 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

I guess I just found a solution ... $.ui.dialog.prototype._create.call(this);

The full code:

$.widget("ui.ajaxdialog", $.ui.dialog, {
  _create: function() {
    // Your code before calling the overridden method.
    $.ui.dialog.prototype._create.call(this);
    // Your code after calling the overridden method.
  }
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743696279a4491809.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信