Searched refs:label (Results 1 - 25 of 56) sorted by relevance

123

/yui3/src/dial/lang/
H A Ddial.js2 label: 'My label',
H A Ddial_en.js2 label: 'My label',
H A Ddial_es.js2 label: 'Mi etiqueta',
/yui3/build/dial/lang/
H A Ddial.js1 YUI.add("lang/dial",function(a){a.Intl.add("dial","",{label:"My label",resetStr:"Reset",tooltipHandle:"Drag to set value"});},"@VERSION@")
H A Ddial_en.js1 YUI.add("lang/dial_en",function(a){a.Intl.add("dial","en",{label:"My label",resetStr:"Reset",tooltipHandle:"Drag to set value"});},"@VERSION@")
H A Ddial_es.js1 YUI.add("lang/dial_es",function(a){a.Intl.add("dial","es",{label:"Mi etiqueta",resetStr:"Resetear",tooltipHandle:"Arrastre para ajustar el valor"});},"@VERSION@")
/yui3/src/button/js/
H A Dcore.js62 config.label = config.label || this._getLabel(node);
113 * @description Getter for a button's 'label' ATTR
119 label;
122 label = node.get('value');
125 label = (node.one('.' + Button.CLASS_NAMES.LABEL) || node).get('text');
128 return label;
133 * @description Setter for a button's 'label' ATTR
134 * @param label {string}
137 _uiSetLabel: function (label) {
[all...]
/yui3/build/button-core/
H A Dbutton-core-debug.js64 config.label = config.label || this._getLabel(node);
115 * @description Getter for a button's 'label' ATTR
121 label;
124 label = node.get('value');
127 label = (node.one('.' + Button.CLASS_NAMES.LABEL) || node).get('text');
130 return label;
135 * @description Setter for a button's 'label' ATTR
136 * @param label {string}
139 _uiSetLabel: function (label) {
[all...]
/yui3/src/node-menunav/assets/skins/sam/
H A Dnode-menunav-skin.css103 .yui3-skin-sam .yui3-menu-label,
104 .yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label,
125 .yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label,
141 .yui3-skin-sam .yui3-menu-label,
142 .yui3-skin-sam .yui3-menu .yui3-menu .yui3-menu-label {
148 .yui3-skin-sam .yui3-menu-horizontal .yui3-menu-label {
154 .yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label,
155 .yui3-skin-sam .yui3-splitbuttonnav .yui3-menu-label {
161 .yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label {
167 .yui3-skin-sam .yui3-menubuttonnav .yui3-menu-label e
[all...]
/yui3/src/charts/js/
H A DCategoryAxis.js20 * Formats a label based on the axis type and optionally specified format.
223 * the current label.
226 * @param {Number} i Index of the label.
232 var label,
237 label = data[i];
241 label = data[l - (i + 1)];
243 return label;
247 * Returns a string corresponding to the first label on an
256 label = data[0];
257 return label;
[all...]
H A DAxis.js117 label,
124 label = styles.label.margin;
131 label[i] = label[i] === undefined ? defaultMargins[i] : label[i];
210 label: {
351 labelStyles = styles.label,
363 label,
423 label
[all...]
H A DLeftAxisLayout.js112 * Calculates the point for a label.
128 * @param {HTMLElement} label to measure
156 * Determines the available label width when the axis width has been explicitly set.
170 margin = styles.label.margin.right;
181 * @param {HTMLElement} label to rotate position
184 positionTitle: function(label)
191 labelWidth = label.offsetWidth,
192 labelHeight = label.offsetHeight,
204 host._rotate(label, props);
211 * @param {HTMLElement} label t
[all...]
H A DBottomAxisLayout.js111 * Calculates the point for a label.
127 * @param {HTMLElement} label to measure
155 * Determines the available label height when the axis width has been explicitly set.
169 margin = styles.label.margin.right;
180 * @param {HTMLElement} label to rotate position
183 positionTitle: function(label)
190 labelWidth = label.offsetWidth,
191 labelHeight = label.offsetHeight,
203 host._rotate(label, props);
210 * @param {HTMLElement} label t
[all...]
H A DRightAxisLayout.js113 * Calculates the point for a label.
129 * @param {HTMLElement} label to measure
157 * Determines the available label width when the axis width has been explicitly set.
171 margin = styles.label.margin.right;
182 * @param {HTMLElement} label to rotate position
185 positionTitle: function(label)
191 labelWidth = label.offsetWidth,
192 labelHeight = label.offsetHeight,
205 host._rotate(label, props);
212 * @param {HTMLElement} label t
[all...]
H A DTopAxisLayout.js111 * Calculates the point for a label.
127 * @param {HTMLElement} label to measure
155 * Determines the available label height when the axis width has been explicitly set.
169 margin = styles.label.margin.right;
180 * @param {HTMLElement} label to rotate position
183 positionTitle: function(label)
189 labelWidth = label.offsetWidth,
190 labelHeight = label.offsetHeight,
203 host._rotate(label, props);
210 * @param {HTMLElement} label t
[all...]
H A DTimeAxis.js102 * Method used for formatting a label. This attribute allows for the default label formatting method to overridden. The method use would need
108 * <dt>format</dt><dd>STRFTime string used to format the label. (optional)</dd>
127 * Pattern used by the `labelFunction` to format a label.
139 * Formats a label based on the axis type and optionally specified format.
176 * the current label.
179 * @param {Number} i Index of the label.
189 label;
194 label = min + increm;
198 label
[all...]
/yui3/src/button/tests/
H A Dbutton-plugin-test.js13 this.label = "Hello";
14 Y.one("#container").setContent('<button id="testButton">' + this.label + '</button>');
22 var oldLabel = this.label;
32 label: newLabel,
43 var oldLabel = this.label;
53 node.set('label', newLabel);
63 var oldLabel = this.label;
73 'label': newLabel,
84 var oldLabel = this.label;
95 label
[all...]
H A Dbutton-core-test.js49 'Changing the label should change the `label` attribute of a button': function () {
51 var defaultText = Y.ButtonCore.ATTRS.label.value;
54 button.set('label', newText);
55 Assert.areEqual(newText, button.get('label'));
58 'Changing the label should change the `innerHTML` value of a button node': function () {
61 var defaultText = Y.ButtonCore.ATTRS.label.value;
64 button.set('label', newText);
85 'Changing the `label` attribute should fire a `labelChange` event': function () {
96 button.set('label', 'somethin
[all...]
/yui3/src/tabview/assets/skins/sam/
H A Dtabview-skin.css18 .yui3-skin-sam .yui3-tab-label {
29 .yui3-skin-sam .yui3-tab-label:hover,
30 .yui3-skin-sam .yui3-tab-label:focus {
35 .yui3-skin-sam .yui3-tab-selected .yui3-tab-label,
36 .yui3-skin-sam .yui3-tab-selected .yui3-tab-label:focus,
37 .yui3-skin-sam .yui3-tab-selected .yui3-tab-label:hover { /* no hover effect for selected */
42 .yui3-skin-sam .yui3-tab-selected .yui3-tab-label {
46 .yui3-skin-sam .yui3-tab-selected .yui3-tab-label {
/yui3/src/widget-buttons/tests/
H A Dwidget-buttons-test.js66 label : 'Foo',
100 label : 'Bar',
173 buttons: [{label: 'foo'}]
198 {label: 'foo', section: 'header'},
199 {label: 'bar', section: 'footer'}
210 header: [{label: 'foo'}],
211 footer: [{label: 'bar'}]
223 {label: 'foo'},
224 {label: 'bar', section: 'footer'}
236 {label
[all...]
/yui3/src/node-menunav/assets/skins/night/
H A Dnode-menunav-skin.css116 .yui3-skin-night .yui3-menu-label,
117 .yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label,
145 .yui3-skin-night .yui3-menu-horizontal .yui3-menu-label,
161 .yui3-skin-night .yui3-menu-label,
162 .yui3-skin-night .yui3-menu .yui3-menu .yui3-menu-label {
168 .yui3-skin-night .yui3-menu-horizontal .yui3-menu-label {
174 .yui3-skin-night .yui3-menubuttonnav .yui3-menu-label,
175 .yui3-skin-night .yui3-splitbuttonnav .yui3-menu-label {
181 .yui3-skin-night .yui3-menubuttonnav .yui3-menu-label {
187 .yui3-skin-night .yui3-menubuttonnav .yui3-menu-label e
[all...]
/yui3/src/panel/js/
H A Dpanel.js77 label : 'Close',
/yui3/src/tabview/js/
H A Dtab.js58 this.set('label', this.get('label'));
112 _defLabelSetter: function(label) {
113 this.get('contentBox').setContent(label);
114 return label;
126 // find panel by ID mapping from label href
165 * @attribute label
168 label: {
/yui3/build/panel/
H A Dpanel-debug.js79 label : 'Close',
/yui3/build/button-base/
H A Dbutton-base-debug.js52 config.label = config.label || config.host.getContent(); //Todo: Is this the right place?
127 label: {
258 this._uiSetLabel(this.get('label'));
268 label: {
269 value: Y.ButtonBase.ATTRS.label.value
282 label: function(node) {

Completed in 124 milliseconds

123