_dd
- protected {DD.Drag}
The DD.Drag instance linked to the thumb node.
_key
- protected {Object}
Cached fast access map for DOM properties and attributes that
pertain to accessing dimensional or positioning information
according to the Slider's axis (e.g. "height" vs.
"width"). Extension classes should add to this collection
for axis related strings if necessary.
axis
- protected {String}
The configured axis, stored for fast lookup since it's a writeOnce
attribute. This is for use by extension classes. For
implementation code, use get( "axis" )
for
authoritative source. Never write to this property.
Bounding box template that will contain the Slider's DOM subtree. <span>s are used to support inline-block styling.
Default Value: <span></span>
Content box template that will contain the Slider's rail and thumb.
Default Value: <span></span>
rail
- {Node}
The Node instance of the Slider's rail element. Do not write to
this property.
Rail template that will contain the end caps and the thumb.
{placeholder}s are used for template substitution at render time.
Default Value: <span class="{railClass}"><span class="{railMinCapClass}"></span><span class="{railMaxCapClass}"></span></span>
Static property used to define the default attribute configuration of
the Widget.
The identity of the widget.
Default Value: 'sliderBase'
The Node instance of the Slider's thumb element. Do not write to
this property.
Thumb template that will contain the thumb image and shadow. <img>
tags are used instead of background images to avoid a flicker bug in IE.
{placeholder}s are used for template substitution at render time.
Default Value: <span class="{thumbClass}" tabindex="-1"><img src="{thumbShadowUrl}" alt="Slider thumb shadow" class="{thumbShadowClass}"><img src="{thumbImageUrl}" alt="Slider thumb" class="{thumbImageClass}"></span>