Cross Reference: /yui3/src/event/docs/focus-example.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
<style scoped>
.yui3-js-enabled .yui3-checkboxes-loading { display: none; }
</style>
<div class="intro">
<p>
Using Progressive Enhancement to skin checkboxes with the help of the
<a href="../../api/Loader.html">Loader</a>,
<a href="../../api/module_classnamemanager.html">ClassNameManager
Utility</a>, and the Event Utility's <code>focus</code> and
<code>blur</code> events and the <code>delegate</code> method.
</p>
</div>
<div class="example yui3-skin-sam">
{{>focus-example-source}}
</div>
<h2>Challenges</h2>
<p>
There are a few challenges when trying to skin an HTML checkbox using CSS. To start, most of the
<a href="http://developer.yahoo.com/yui/articles/gbs/#a-grade">A-grade browsers</a> don't provide
support for CSS properties like <code>border</code> and <code>background</code> on the
<code>&#60;input type="checkbox"&#62;</code> element. Additionally, IE 6 and IE 7 (Quirks Mode)
lack support for attribute selectors &#151; necessary to style the <code>checked</code> and
<code>disabled</code> states. Additionally, IE 6 and 7 only support the <code>:focus</code> and
<code>:active</code> pseudo classes on <code>&#60;a&#62;</code> elements, both of which are needed
to style a checkbox when it is focused or depressed.
</p>
<h2>Approach</h2>
<p>
Despite the shortcomings in CSS support, with a little extra markup and through the use of
JavaScript it is possible to skin an <code>&#60;input type="checkbox"&#62;</code> element
consistently well in all of the
<a href="http://developer.yahoo.com/yui/articles/gbs/#a-grade">A-grade browsers</a>.
</p>
<h4>Markup</h4>
<p>
Since CSS support for the <code>&#60;input type="checkbox"&#62;</code> element is lacking, wrap
<code>&#60;input type="checkbox"&#62;</code> elements in one or more inline elements to provide the
necessary hooks for styling. In this example, each <code>&#60;input type="checkbox"&#62;</code>
element is wrapped by two <code>&#60;span&#62;</code>s.
</p>
```
<span>
<span>
<input type="checkbox">
</span>
</span>
```
<h4>CSS</h4>
<p>
To style each checkbox, a class name of <code>yui3-checkbox</code> will be applied to the
outtermost <code>&#60;span&#62;</code> wrapping each <code>&#60;input type="checkbox"&#62;</code>
element. An additional class will be used to represent the various states of each checkbox. The
class name for each state will follow a consistent pattern: <code>yui3-checkbox-[state]</code>.
For this example, the following state-based class names will be used:
</p>
<dl>
<dt><code>yui3-checkbox-focus</code></dt>
<dd>The checkbox has focus</dd>
<dt><code>yui3-checkbox-active</code></dt>
<dd>The checkbox is active (pressed)</dd>
<dt><code>yui3-checkbox-checked</code></dt>
<dd>The checkbox is checked</dd>
</dl>
<p>
The styles for each checkbox comes together as follows:
</p>
```
.yui3-checkbox {
display: -moz-inline-stack; /* Gecko < 1.9, since it doesn't support "inline-block" */
display: inline-block; /* IE, Opera and Webkit, and Gecko 1.9 */
width: 10px;
height: 10px;
border: inset 2px #999;
background-color: #fff; /* Need to set a background color or IE won't get mouse events */
/*
Necessary for IE 6 (Quirks and Standards Mode) and IE 7 (Quirks Mode), since
they don't support use of negative margins without relative positioning.
*/
_position: relative;
}
.yui3-checkbox span {
display: block;
height: 14px;
width: 12px;
overflow: hidden;
/* Position the checkmark for Gecko, Opera and Webkit and IE 7 (Strict Mode). */
margin: -5px 0 0 1px;
/* Position the checkmark for IE 6 (Strict and Quirks Mode) and IE 7 (Quirks Mode).*/
_margin: 0;
_position: absolute;
_top: -5px;
_left: 1px;
}
/* For Gecko < 1.9: Positions the checkbox on the same line as its corresponding label. */
.yui3-checkbox span:after {
content: ".";
visibility: hidden;
line-height: 2;
}
/*
Hide the actual checkbox offscreen so that it is out of view, but still accessible via
the keyboard.
*/
.yui3-checkbox input {
position: absolute;
left: -10000px;
}
.yui3-checkbox-focus {
border-color: #39f;
background-color: #9cf;
}
.yui3-checkbox-active {
background-color: #ccc;
}
.yui3-checkbox-checked span {
/* Draw a custom checkmark for the checked state using a background image. */
background: url(checkmark.png) no-repeat;
}
```
<h4>JavaScript</h4>
<p>
Application and removal of the state-based class names will be facilitated by JavaScript event
handlers. Each event handler will track the state of the
<code>&#60;input type="checkbox"&#62;</code> element, and apply and remove corresponding
state-based class names from its outtermost <code>&#60;span&#62;</code> &#151;
making it easy to style each state. And since each JavaScript is required for state management,
the stylesheet for the skinned checkboxes will only be added to the page when JavaScript is
enabled. This will ensure that each checkbox works correctly with and without JavaScript enabled.
</p>
<p>
Since there could easily be many instances of a skinned checkbox on the page, all event
listeners will be attached to the containing element for all checkboxes. Each listener will
listen for events as they bubble up from each checkbox. Relying on event bubbling will improve the
overall performance of the page by reducing the number of event handlers.
</p>
<p>
Since the DOM <code>focus</code> and <code>blur</code> events do not bubble, use the Event Utility's
<a href="../../api/YUI.html#event_focus"><code>focus</code></a> and
<a href="../../api/YUI.html#event_focus"><code>blur</code></a> custom events, as an alternative to
attaching discrete focus and blur event handlers to the <code>&#60;input type="checkbox"&#62;</code>
element of each skinned checkbox. The
<a href="../../api/YUI.html#event_focus"><code>focus</code></a> and
<a href="../../api/YUI.html#event_focus"><code>blur</code></a> custom events leverage
capture-phase DOM event listeners, making it possible to attach a single focus and blur event
listener on the containing element of each checkbox &#151; thereby increasing the performance
of the page. The complete script for the example comes together as follows:
</p>
```
YUI().use("*", function(Y) {
var UA = Y.UA,
getClassName = Y.ClassNameManager.getClassName,
sCheckboxFocusClass = getClassName("checkbox", "focus"), // Create yui3-checkbox-focus
sCheckboxCheckedClass = getClassName("checkbox", "checked"), // Create yui3-checkbox-checked
sCheckboxActiveClass = getClassName("checkbox", "active"), // Create yui3-checkbox-active
bKeyListenersInitialized = false,
bMouseListenersInitialized = false,
forAttr = (UA.ie && UA.ie < 8) ? "htmlFor" : "for",
bBlockDocumentMouseUp = false,
bBlockClearActive = false,
bBlockBlur = false,
oActiveCheckbox;
var initKeyListeners = function () {
this.delegate("keydown", onCheckboxKeyDown, ".yui3-checkbox");
this.delegate("click", onCheckboxClick, ".yui3-checkbox");
this.delegate("blur", onCheckboxBlur, "input[type=checkbox]");
bKeyListenersInitialized = true;
};
var initMouseListeners = function () {
this.delegate("mouseover", onCheckboxMouseOver, ".yui3-checkbox");
this.delegate("mouseout", onCheckboxMouseOut, ".yui3-checkbox-active");
this.get("ownerDocument").on("mouseup", onDocumentMouseUp);
bMouseListenersInitialized = true;
};
var getCheckbox = function (node) {
return (node.hasClass("yui3-checkbox") ? node : node.ancestor(".yui3-checkbox"));
};
var getCheckboxForLabel = function (label) {
var sID = label.getAttribute(forAttr),
oInput,
oCheckbox;
if (sID) {
oInput = Y.one("#" + sID);
if (oInput) {
oCheckbox = getCheckbox(oInput);
}
}
return oCheckbox;
};
var updateCheckedState = function (input) {
var oCheckbox = getCheckbox(input);
if (input.get("checked")) {
oCheckbox.addClass(sCheckboxCheckedClass);
}
else {
oCheckbox.removeClass(sCheckboxCheckedClass);
}
};
var setActiveCheckbox = function (checkbox) {
checkbox.addClass(sCheckboxActiveClass);
oActiveCheckbox = checkbox;
};
var clearActiveCheckbox = function () {
if (oActiveCheckbox) {
oActiveCheckbox.removeClass(sCheckboxActiveClass);
oActiveCheckbox = null;
}
};
var onCheckboxMouseOver = function (event, matchedEl) {
if (oActiveCheckbox && oActiveCheckbox.compareTo(this)) {
oActiveCheckbox.addClass(sCheckboxActiveClass);
}
};
var onCheckboxMouseOut = function (event) {
this.removeClass(sCheckboxActiveClass);
};
var onDocumentMouseUp = function (event) {
var oCheckbox;
if (!bBlockDocumentMouseUp) {
oCheckbox = getCheckbox(event.target);
if ((oCheckbox && !oCheckbox.compareTo(oActiveCheckbox)) || !oCheckbox) {
clearActiveCheckbox();
}
}
bBlockDocumentMouseUp = false;
};
var onCheckboxFocus = function (event) {
// Remove the focus style from any checkbox that might still have it
var oCheckbox = Y.one("#checkboxes").one(".yui3-checkbox-focus");
if (oCheckbox) {
oCheckbox.removeClass(sCheckboxFocusClass);
}
// Defer adding key-related and click event listeners until
// one of the checkboxes is initially focused.
if (!bKeyListenersInitialized) {
initKeyListeners.call(event.container);
}
var oCheckbox = getCheckbox(this);
oCheckbox.addClass(sCheckboxFocusClass);
};
var onCheckboxBlur = function (event) {
if (bBlockBlur) {
bBlockBlur = false;
return;
}
var oCheckbox = getCheckbox(this);
oCheckbox.removeClass(sCheckboxFocusClass);
if (!bBlockClearActive && oCheckbox.compareTo(oActiveCheckbox)) {
clearActiveCheckbox();
}
bBlockClearActive = false;
};
var onCheckboxMouseDown = function (event) {
// Defer adding mouse-related and click event listeners until
// the user mouses down on one of the checkboxes.
if (!bMouseListenersInitialized) {
initMouseListeners.call(event.container);
}
var oCheckbox,
oInput;
if (this.get("nodeName").toLowerCase() === "label") {
// If the target of the event was the checkbox's label element, the
// label will dispatch a click event to the checkbox, meaning the
// "onCheckboxClick" handler will be called twice. For that reason
// it is necessary to block the "onDocumentMouseUp" handler from
// clearing the active state, so that a reference to the active
// checkbox still exists the second time the "onCheckboxClick"
// handler is called.
bBlockDocumentMouseUp = true;
// When the user clicks the label instead of the checkbox itself,
// the checkbox will be blurred if it has focus. Since the
// "onCheckboxBlur" handler clears the active state it is
// necessary to block the clearing of the active state when the
// label is clicked instead of the checkbox itself.
bBlockClearActive = true;
oCheckbox = getCheckboxForLabel(this);
}
else {
oCheckbox = this;
}
// Need to focus the input manually for two reasons:
// 1) Mousing down on a label in Webkit doesn't focus its
// associated checkbox
// 2) By default checkboxes are focused when the user mouses
// down on them. However, since the actually checkbox is
// obscurred by the two span elements that are used to
// style it, the checkbox wont' receive focus as it was
// never the actual target of the mousedown event.
oInput = oCheckbox.one("input");
// Calling Event.preventDefault won't block the blurring of the
// currently focused element in IE, so we'll use the "bBlockBlur"
// variable to stop the code in the blur event handler
// from executing.
bBlockBlur = (UA.ie && oInput.get("checked"));
oInput.focus();
setActiveCheckbox(oCheckbox);
// Need to call preventDefault because by default mousing down on
// an element will blur the element in the document that currently
// has focus--in this case, the input element that was
// just focused.
event.preventDefault();
};
var onCheckboxClick = function (event) {
var oInput;
if (this.compareTo(oActiveCheckbox)) {
oInput = this.one("input");
if (!event.target.compareTo(oInput)) {
// If the click event was fired via the mouse the checked
// state will have to be manually updated since the input
// is hidden offscreen and therefore couldn't be the
// target of the click.
oInput.set("checked", (!oInput.get("checked")));
}
updateCheckedState(oInput);
clearActiveCheckbox();
}
};
var onCheckboxKeyDown = function (event) {
// Style the checkbox as being active when the user presses the
// space bar
if (event.keyCode === 32) {
setActiveCheckbox(this);
}
};
Y.all("#checkboxes>div>span").addClass("yui3-checkbox");
// Remove the "yui3-checkboxes-loading" class used to hide the
// checkboxes now that the checkboxes have been skinned.
Y.one("#checkboxes").removeClass("yui3-checkboxes-loading");
// Add the minimum number of event listeners needed to start, bind the
// rest when needed
Y.delegate("mousedown", onCheckboxMouseDown, "#checkboxes", ".yui3-checkbox,label");
Y.delegate("focus", onCheckboxFocus, "#checkboxes", "input[type=checkbox]");
});
```
<h4>Progressive Enhancement</h4>
<p>
To account for the scenario where the user has CSS enabled in their browser but JavaScript
is disabled, the CSS used to style the checkboxes will be loaded via JavaScript
using the YUI instance's <a href="http://developer.yahoo.com/yui/3/yui#loader">built-in Loader</a>.
</p>
```
YUI({
base: "${buildDirectory}",
// Load the stylesheet for the skinned checkboxes via JavaScript,
// since without JavaScript skinning of the checkboxes wouldn't
// be possible.
modules: {
"checkboxcss": {
type: "css",
fullpath: "${assetsDirectory}checkbox.css"
},
"checkboxjs": {
type: "js",
fullpath: "${assetsDirectory}checkbox.js",
requires: ["classnamemanager", "event-focus", "node-event-delegate", "checkboxcss"]
}
}
}).use("checkboxjs");
```
<p>
To prevent the user from seeing a flash unstyled content when JavaScript is enabled,
a style rule is created using YUI's <code>yui3-js-enabled</code> class name that will temporarily
hide the markup while the JavaScript and CSS are in the process of loading. For more on using the
<code>yui3-js-enabled</code> class name, see the
<a href="../../widget/#progressive">HIDING PROGRESSIVELY ENHANCED MARKUP</a> section of the
<a href="../../widget/">YUI Widget landing page</a>.
</p>
```
.yui3-js-enabled .yui3-checkboxes-loading {
display: none;
}
```