expect( 8 );
$.widget( "ui.testWidget", {
_create: function() {
+ var uuid = this.uuid;
this.element = {
bind: function( event, handler ) {
- equal( event, "click.testWidget" );
+ equal( event, "click.testWidget" + uuid );
ok( $.isFunction(handler) );
},
trigger: $.noop
return {
delegate: function( selector, event, handler ) {
equal( selector, "a" );
- equal( event, "click.testWidget" );
+ equal( event, "click.testWidget" + uuid );
ok( $.isFunction(handler) );
}
};
return {
delegate: function( selector, event, handler ) {
equal( selector, "form fieldset > input" );
- equal( event, "change.testWidget" );
+ equal( event, "change.testWidget" + uuid );
ok( $.isFunction(handler) );
}
};
$.ui.testWidget();
});
+test( "_bind() to common element", function() {
+ expect( 1 );
+ $.widget( "ui.testWidget", {
+ _create: function() {
+ this._bind( this.document, {
+ "customevent": "_handler"
+ });
+ },
+ _handler: function() {
+ ok( true, "handler triggered" );
+ }
+ });
+ var widget = $( "#widget" ).testWidget().data( "testWidget" );
+ $( "#widget-wrapper" ).testWidget();
+ widget.destroy();
+ $( document ).trigger( "customevent" );
+});
+
test( "._hoverable()", function() {
$.widget( "ui.testWidget", {
_create: function() {
*/
(function( $, undefined ) {
-var slice = Array.prototype.slice,
+var uuid = 0,
+ slice = Array.prototype.slice,
_cleanData = $.cleanData;
$.cleanData = function( elems ) {
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
this.options,
this._getCreateOptions(),
options );
+ this.uuid = uuid++;
this.bindings = $();
this.hoverable = $();
// we can probably remove the unbind calls in 2.0
// all event bindings should go through this._on()
this.element
- .unbind( "." + this.widgetName )
+ .unbind( "." + this.widgetName + this.uuid )
// 1.9 BC for #7810
// TODO remove dual storage
.removeData( this.widgetName )
// http://bugs.jquery.com/ticket/9413
.removeData( $.camelCase( this.widgetFullName ) );
this.widget()
- .unbind( "." + this.widgetName )
+ .unbind( "." + this.widgetName + this.uuid )
.removeAttr( "aria-disabled" )
.removeClass(
this.widgetFullName + "-disabled " +
"ui-state-disabled" );
// clean up events and states
- this.bindings.unbind( "." + this.widgetName );
+ this.bindings.unbind( "." + this.widgetName + this.uuid );
this.hoverable.removeClass( "ui-state-hover" );
this.focusable.removeClass( "ui-state-focus" );
},
}
var match = event.match( /^(\w+)\s*(.*)$/ ),
- eventName = match[1] + "." + instance.widgetName,
+ eventName = match[1] + "." + instance.widgetName + instance.uuid,
selector = match[2];
if ( selector ) {
instance.widget().delegate( selector, eventName, handlerProxy );