X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/530ef4b6c5b943cfa68b779d11cf7de29aa878bf..b37ceabb82336ee82757cd32efe353cfab8ec267:/docs/output/Ext.CycleButton.html diff --git a/docs/output/Ext.CycleButton.html b/docs/output/Ext.CycleButton.html index 0fdc8e1a..15708e81 100644 --- a/docs/output/Ext.CycleButton.html +++ b/docs/output/Ext.CycleButton.html @@ -44,7 +44,36 @@ Two values are allowed:

  • 'right'
  • 'bottom'
  • -

    Defaults to 'right'.

    Button arrowHandler : Function
    A function called when the arrow button is clicked (can be used instead of click event)
    SplitButton arrowTooltip : String
    The title attribute of the arrow
    SplitButton autoHeight : Boolean
    True to use height:'auto', false to use fixed height (or allow it to be managed by its parent +

    Defaults to 'right'.

    Button arrowHandler : Function
    A function called when the arrow button is clicked (can be used instead of click event)
    SplitButton arrowTooltip : String
    The title attribute of the arrow
    SplitButton autoEl : Mixed
    A tag name or DomHelper spec used to create the Element which will +encapsulate this Component. +You do not normally ne...

    A tag name or DomHelper spec used to create the Element which will +encapsulate this Component.

    +

    You do not normally need to specify this. For the base classes Ext.Component, Ext.BoxComponent, +and Ext.Container, this defaults to 'div'. The more complex Ext classes use a more complex +DOM structure created by their own onRender methods.

    +

    This is intended to allow the developer to create application-specific utility Components encapsulated by +different DOM elements. Example usage:

    {
    +    xtype: 'box',
    +    autoEl: {
    +        tag: 'img',
    +        src: 'http://www.example.com/example.jpg'
    +    }
    +}, {
    +    xtype: 'box',
    +    autoEl: {
    +        tag: 'blockquote',
    +        html: 'autoEl is cool!'
    +    }
    +}, {
    +    xtype: 'container',
    +    autoEl: 'ul',
    +    cls: 'ux-unordered-list',
    +    items: {
    +        xtype: 'box',
    +        autoEl: 'li',
    +        html: 'First list item'
    +    }
    +}
    Component autoHeight : Boolean
    True to use height:'auto', false to use fixed height (or allow it to be managed by its parent Container's layout mana...

    True to use height:'auto', false to use fixed height (or allow it to be managed by its parent Container's layout manager. Defaults to false.

    Note: Although many components inherit this config option, not all will @@ -114,7 +143,21 @@ manager (e.g. fieldLabel is specified or isFormField=true is specified.


    See Ext.layout.FormLayout.fieldTpl also.

    Component clickEvent : String
    The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu). Def...
    The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu). -Defaults to 'click'.
    Button cls : String
    A CSS class string to apply to the button's main element.
    Button ctCls : String
    An optional extra CSS class that will be added to this component's container. This can be useful for +Defaults to 'click'.
    Button cls : String
    A CSS class string to apply to the button's main element.
    Button contentEl : String
    Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content +for this comp...

    Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content +for this component.

    +
    Component ctCls : String
    An optional extra CSS class that will be added to this component's container. This can be useful for adding customize...

    An optional extra CSS class that will be added to this component's container. This can be useful for adding customized styles to the container or any of its children using standard CSS rules. See Ext.layout.ContainerLayout.extraCls also.

    @@ -125,7 +168,8 @@ which assigns a value by default:
    To configure the above Class with an extra CSS class append to the default. For example, for BoxLayout (Hbox and Vbox):
    ctCls: 'x-box-layout-ct custom-class'
    -

    Component disabled : Boolean
    True to start disabled (defaults to false)
    Button disabledClass : String
    CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
    Component enableToggle : Boolean
    True to enable pressed/not pressed toggling (defaults to false)
    Button fieldLabel : String
    The label text to display next to this Component (defaults to ''). +

    Component data : Mixed
    The initial set of data to apply to the tpl to +update the content area of the Component.
    Component disabled : Boolean
    True to start disabled (defaults to false)
    Button disabledClass : String
    CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
    Component enableToggle : Boolean
    True to enable pressed/not pressed toggling (defaults to false)
    Button fieldLabel : String
    The label text to display next to this Component (defaults to ''). Note: this config is only used when this Component...

    The label text to display next to this Component (defaults to '').


    Note: this config is only used when this Component is rendered by a Container which has been configured to use the FormLayout layout manager (e.g. @@ -179,7 +223,11 @@ since items are automatically laid out when they are first shown (no sizing is done while hidden).

    Component hideParent : Boolean
    True to hide and show the component's container when hide/show is called on the component, false to hide and show the...
    True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide -button on a window by setting hide:true on the button when adding it to its parent container.
    Component icon : String
    The path to an image to display in the button (the image will be set as the background-image +button on a window by setting hide:true on the button when adding it to its parent container.
    Component html : String/Object
    An HTML fragment, or a DomHelper specification to use as the layout element +content (defaults to ''). The HTML conten...
    An HTML fragment, or a DomHelper specification to use as the layout element +content (defaults to ''). The HTML content is added after the component is rendered, +so the document will not contain this HTML at the time the render event is fired. +This content is inserted into the body before any configured contentEl is appended.
    Component icon : String
    The path to an image to display in the button (the image will be set as the background-image CSS property of the butt...
    The path to an image to display in the button (the image will be set as the background-image CSS property of the button by default, so if you want a mixed icon/text button, set cls:'x-btn-text-icon')
    Button iconAlign : String
    (Optional) The side of the Button box to render the icon. Four values are allowed: <ul class="mdetail-params"> @@ -536,7 +584,16 @@ Instances, or subclasses which need a different DOM structure may provide a diff template layout in conjunction with an implementation of getTemplateArgs.
    Button text : String
    The button text to be used as innerHTML (html tags are accepted)
    Button toggleGroup : String
    The group this toggle button is a member of (only 1 per group can be pressed)
    Button toggleHandler : Function
    Function called when a Button with enableToggle set to true is clicked. Two arguments are passed:<ul class="mdetail-p...
    Function called when a Button with enableToggle set to true is clicked. Two arguments are passed:
    Button tooltip : String/Object
    The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config obj...
    The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config object
    Button tooltipType : String
    The type of tooltip to use. Either 'qtip' (default) for QuickTips or 'title' for title attribute.
    Button type : String
    submit, reset or button - defaults to 'button'
    Button width : Number
    The width of this component in pixels (defaults to auto). +
    Button tooltip : String/Object
    The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config obj...
    The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config object
    Button tooltipType : String
    The type of tooltip to use. Either 'qtip' (default) for QuickTips or 'title' for title attribute.
    Button tpl : Mixed
    An Ext.Template, Ext.XTemplate +or an array of strings to form an Ext.XTemplate. +Used in conjunction with the data and...
    An Ext.Template, Ext.XTemplate +or an array of strings to form an Ext.XTemplate. +Used in conjunction with the data and +tplWriteMode configurations.
    Component tplWriteMode : String
    The Ext.(X)Template method to use when +updating the content area of the Component. Defaults to 'overwrite' +(see Ext.X...
    The Ext.(X)Template method to use when +updating the content area of the Component. Defaults to 'overwrite' +(see Ext.XTemplate.overwrite).
    Component type : String
    submit, reset or button - defaults to 'button'
    Button width : Number
    The width of this component in pixels (defaults to auto). Note to express this dimension as a percentage or offset se...
    The width of this component in pixels (defaults to auto). Note to express this dimension as a percentage or offset see Ext.Component.anchor.
    BoxComponent x : Number
    The local x (left) coordinate for this component if contained within a positioning container.
    BoxComponent xtype : String
    The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...
    The registered xtype to create. This config option is not used when passing