X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..10a866c12701c0a0afd0ac85dcdcf32a421514ac:/docs/output/Ext.grid.GridView.html?ds=inline diff --git a/docs/output/Ext.grid.GridView.html b/docs/output/Ext.grid.GridView.html index 8296a68a..917197ba 100644 --- a/docs/output/Ext.grid.GridView.html +++ b/docs/output/Ext.grid.GridView.html @@ -1,4 +1,4 @@ -
Observable GridView
Package: | Ext.grid |
Defined In: | GridView.js |
Class: | GridView |
Subclasses: | GroupingView, BufferView |
Extends: | Observable |
This class encapsulates the user interface of an Ext.grid.GridPanel. +
Observable GridView
Package: | Ext.grid |
Defined In: | GridView.js |
Class: | GridView |
Subclasses: | GroupingView |
Extends: | Observable |
This class encapsulates the user interface of an Ext.grid.GridPanel. Methods of this class may be used to access user interface elements to enable special display effects. Do not change the DOM structure of the user interface.
This class does not provide ways to manipulate the underlying data. The data @@ -82,7 +82,7 @@ Ext.DomObserver = Ext.extend(Object, { typeAhead: true, mode: 'local', triggerAction: 'all' -});
Object events
)
+});Returns:String/Array events
)
:
voidEnables events fired by this Observable to bubble up an owner hierarchy by calling @@ -167,13 +167,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');
}
@@ -188,17 +188,19 @@ 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');
}
}
-});
events
: ObjectHTMLElement el
)
+});events
: String/ArrayHTMLElement el
)
:
NumberReturn the index of the grid column which contains the passed HTMLElement.
See also findRowIndexel
: HTMLElementNumber
HTMLElement el
)
:
- HTMLElementel
: HTMLElementHTMLElement
HTMLElement el
)
+ HTMLElementel
: HTMLElementHTMLElement
HTMLElement el
)
+ :
+ HTMLElementel
: HTMLElementHTMLElement
HTMLElement el
)
:
NumberReturn the index of the grid row which contains the passed HTMLElement.