X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.SplitBar.html?ds=inline diff --git a/docs/output/Ext.SplitBar.html b/docs/output/Ext.SplitBar.html deleted file mode 100644 index 2df34651..00000000 --- a/docs/output/Ext.SplitBar.html +++ /dev/null @@ -1,172 +0,0 @@ -
Observable SplitBar
Package: | Ext |
Defined In: | SplitBar.js |
Class: | SplitBar |
Extends: | Observable |
var split = new Ext.SplitBar("elementToDrag", "elementToSize",
- Ext.SplitBar.HORIZONTAL, Ext.SplitBar.LEFT);
-split.setAdapter(new Ext.SplitBar.AbsoluteLayoutAdapter("container"));
-split.minSize = 100;
-split.maxSize = 600;
-split.animate = true;
-split.on('moved', splitterMoved);
Config Options | Defined By | |
---|---|---|
listeners : Object A config object containing one or more event handlers to be added to this
-object during initialization. This should ... A config object containing one or more event handlers to be added to this -object during initialization. This should be a valid listeners config object as specified in the -addListener example for attaching multiple handlers at once. -DOM events from ExtJs Components -While some ExtJs Component classes export selected DOM events (e.g. "click", "mouseover" etc), this
-is usually only done when extra value can be added. For example the DataView's
-
| Observable |
Property | Defined By | |
---|---|---|
animate : Boolean Whether to animate the transition to the new size | SplitBar | |
maxSize : Number The maximum size of the resizing element. (Defaults to 2000) | SplitBar | |
minSize : Number The minimum size of the resizing element. (Defaults to 0) | SplitBar | |
tickSize : Number The increment, in pixels by which to move this SplitBar. When undefined, the SplitBar moves smoothly. | SplitBar | |
useShim : Boolean Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes. | SplitBar |
Method | Defined By | |
---|---|---|
SplitBar( Mixed dragElement , Mixed resizingElement , [Number orientation ], [Number placement ] )
- Create a new SplitBar Create a new SplitBar Parameters:
| SplitBar | |
addEvents( Object object )
- :
- voidUsed to define events on this Observable Used to define events on this Observable Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
- :
- voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
destroy( Boolean removeEl )
- :
- voidDestroy this splitbar. Destroy this splitbar. Parameters:
| SplitBar | |
enableBubble( Object events )
- :
- voidUsed to enable bubbling of events Used to enable bubbling of events Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
- :
- BooleanFires 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). -An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) -by calling enableBubble. Parameters:
| Observable | |
getAdapter()
- :
- The Get the adapter this SplitBar uses Get the adapter this SplitBar uses Parameters:
| SplitBar | |
getMaximumSize()
- :
- Number Gets the maximum size for the resizing element Gets the maximum size for the resizing element Parameters:
| SplitBar | |
getMinimumSize()
- :
- Number Gets the minimum size for the resizing element Gets the minimum size for the resizing element Parameters:
| SplitBar | |
hasListener( String eventName )
- :
- BooleanChecks to see if this object has any listeners for a specified event Checks to see if this object has any listeners for a specified event Parameters:
| Observable | |
on( String eventName , Function handler , [Object scope ], [Object options ] )
- :
- voidAppends an event handler to this object (shorthand for addListener.) Appends an event handler to this object (shorthand for addListener.) Parameters:
| Observable | |
purgeListeners()
- :
- void Removes all listeners for this object Removes all listeners for this object Parameters:
| Observable | |
relayEvents( Object o , Array events )
- :
- voidRelays selected events from the specified Observable as if the events were fired by this. Relays selected events from the specified Observable as if the events were fired by this. Parameters:
| Observable | |
removeListener( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
resumeEvents()
- :
- void Resume firing events. (see suspendEvents)
-If events were suspended using the queueSuspended parameter, then all
-event... Resume firing events. (see suspendEvents)
-If events were suspended using the queueSuspended parameter, then all
-events fired during event suspension will be sent to any listeners now. Parameters:
| Observable | |
setAdapter( Object adapter )
- :
- voidSet the adapter this SplitBar uses Set the adapter this SplitBar uses Parameters:
| SplitBar | |
setCurrentSize( Number size )
- :
- voidSets the initialize size for the resizing element Sets the initialize size for the resizing element Parameters:
| SplitBar | |
setMaximumSize( Number maxSize )
- :
- voidSets the maximum size for the resizing element Sets the maximum size for the resizing element Parameters:
| SplitBar | |
setMinimumSize( Number minSize )
- :
- voidSets the minimum size for the resizing element Sets the minimum size for the resizing element Parameters:
| SplitBar | |
suspendEvents( Boolean queueSuspended )
- :
- voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:
| Observable | |
un( String eventName , Function handler , [Object scope ] )
- :
- voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable |
Event | Defined By | |
---|---|---|
beforeresize :
- ( Ext.SplitBar this )
- Fires before the splitter is dragged Fires before the splitter is dragged Listeners will be called with the following arguments:
| SplitBar | |
moved :
- ( Ext.SplitBar this , Number newSize )
- Fires when the splitter is moved Fires when the splitter is moved Listeners will be called with the following arguments:
| SplitBar | |
resize :
- ( Ext.SplitBar this , Number newSize )
- Fires when the splitter is moved (alias for moved) Fires when the splitter is moved (alias for moved) Listeners will be called with the following arguments:
| SplitBar |