X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/output/Ext.util.ClickRepeater.html diff --git a/docs/output/Ext.util.ClickRepeater.html b/docs/output/Ext.util.ClickRepeater.html index 407ac86c..bfc45379 100644 --- a/docs/output/Ext.util.ClickRepeater.html +++ b/docs/output/Ext.util.ClickRepeater.html @@ -1,4 +1,4 @@ -
Properties Methods Events Config Options Direct Link
Observable
  ClickRepeater

Class Ext.util.ClickRepeater

Package:Ext.util
Defined In:ClickRepeater.js
Class:ClickRepeater
Extends:Observable
A wrapper class which can be applied to any element. Fires a "click" event while the +
Observable
  ClickRepeater

Class Ext.util.ClickRepeater

Package:Ext.util
Defined In:ClickRepeater.js
Class:ClickRepeater
Extends:Observable
A wrapper class which can be applied to any element. Fires a "click" event while the mouse is pressed. The interval between firings may be specified in the config but defaults to 20 milliseconds. @@ -119,7 +119,7 @@ Or a shorthand syntax:
: void
Disables the repeater and stops events from firing.
Disables the repeater and stops events from firing.
Parameters:
  • None.
Returns:
  • void
ClickRepeater enable() : - void
Enables the repeater and allows events to fire.
Enables the repeater and allows events to fire.
Parameters:
  • None.
Returns:
  • void
ClickRepeater enableBubbleObject events ) + void
Enables the repeater and allows events to fire.
Enables the repeater and allows events to fire.
Parameters:
  • None.
Returns:
  • void
ClickRepeater enableBubbleString/Array events ) : void
Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if present...

Enables events fired by this Observable to bubble up an owner hierarchy by calling @@ -128,13 +128,13 @@ this.getBubbleTarget() if present...

Enables events fi implementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to access the required target more quickly.

Example:

Ext.override(Ext.form.Field, {
-//  Add functionality to Field's initComponent to enable the change event to bubble

-    initComponent: Ext.form.Field.prototype.initComponent.createSequence(function() {
-        this.enableBubble('change');
+    //  Add functionality to Field's initComponent to enable the change event to bubble

+    initComponent : Ext.form.Field.prototype.initComponent.createSequence(function() {
+        this.enableBubble('change');
     }),
 
-//  We know that we want Field's events to bubble directly to the FormPanel.

-    getBubbleTarget: function() {
+    //  We know that we want Field's events to bubble directly to the FormPanel.

+    getBubbleTarget : function() {
         if (!this.formPanel) {
             this.formPanel = this.findParentByType('form');
         }
@@ -149,11 +149,11 @@ access the required target more quickly.

}], listeners: { change: function() { -// Title goes red if form has been modified. - myForm.header.setStyle("color", "red"); + // Title goes red if form has been modified. + myForm.header.setStyle('color', 'red'); } } -});
Parameters:
  • events : Object
    The event name to bubble, or an Array of event names.
Returns:
  • void
Observable fireEventString eventNameObject... args ) +});
Parameters:
  • events : String/Array
    The event name to bubble, or an Array of event names.
Returns:
  • void
Observable fireEventString eventNameObject... args ) : Boolean
Fires the specified event with the passed parameters (minus the event name). An event may be set to bubble up an Obse...

Fires the specified event with the passed parameters (minus the event name).