--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/docs/button/button-group.html Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,237 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Example: Managing groups of buttons with button-group</title>
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic">
+ <link rel="stylesheet" href="../../build/cssgrids/cssgrids-min.css">
+ <link rel="stylesheet" href="../assets/css/main.css">
+ <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
+ <link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
+ <script src="../../build/yui/yui-min.js"></script>
+
+</head>
+<body>
+<!--
+<a href="https://github.com/yui/yui3"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
+-->
+<div id="doc">
+ <div id="hd">
+ <h1><img src="http://yuilibrary.com/img/yui-logo.png"></h1>
+ </div>
+
+ <a href="#toc" class="jump">Jump to Table of Contents</a>
+
+
+ <h1>Example: Managing groups of buttons with button-group</h1>
+ <div class="yui3-g">
+ <div class="yui3-u-3-4">
+ <div id="main">
+ <div class="content"><link rel="stylesheet" href='../../build/cssbutton/cssbutton.css'></link>
+<div class="intro">
+ <p>In this example, we'll look at a few ways to create groups of buttons using the <code>'button-group'</code> module.</p>
+</div>
+
+<div class="example">
+ <div class='yui3-skin-sam'> <!-- You need this skin class -->
+ <div id='checkboxContainer'>
+ <h2 id="checkbox-group">Checkbox Group</h2>
+ <button class='checkbox'>Button 1</button>
+ <button class='checkbox'>Button 2</button>
+ <button class='checkbox'>Button 3</button>
+ </div>
+
+ <div id='radioContainer'>
+ <h2 id="radio-group">Radio Group</h2>
+ <button class='radio'>Button A</button>
+ <button class='radio'>Button B</button>
+ <button class='radio'>Button C</button>
+ </div>
+</div>
+
+ <script>
+ YUI().use('button-group', function(Y){
+
+ // A group of checkbox-like buttons
+ var buttonGroupCB = new Y.ButtonGroup({
+ srcNode: '#checkboxContainer',
+ type: 'checkbox',
+ on: {
+ 'selectionChange': function(e){
+ var selection = buttonGroupCB.getSelectedButtons();
+ Y.log('buttonGroup2 selected count = ' + selection.length);
+ }
+ }
+ }).render();
+
+
+ // A group of radio-like buttons
+ var buttonGroupRadio = new Y.ButtonGroup({
+ srcNode: '#radioContainer',
+ type: 'radio'
+ })
+
+ buttonGroupRadio.render();
+
+ buttonGroupRadio.on('selectionChange', function(e){
+ Y.log('buttonGroup selection changed');
+ });
+
+});
+ </script>
+</div>
+
+<h4 id="source-html">Source: HTML</h4>
+<p>
+<strong>Note:</strong> be sure to add the <code>yui3-skin-sam</code> classname to the
+page's <code><body></code> element or to a parent element of the widget in order to apply
+the default CSS skin. See <a href="http://yuilibrary.com/yui/docs/tutorials/skins/">Understanding Skinning</a>.
+</p>
+<pre class="code prettyprint"><div class='yui3-skin-sam'> <!-- You need this skin class -->
+ <div id='checkboxContainer'>
+ <h2>Checkbox Group</h2>
+ <button class='checkbox'>Button 1</button>
+ <button class='checkbox'>Button 2</button>
+ <button class='checkbox'>Button 3</button>
+ </div>
+
+ <div id='radioContainer'>
+ <h2>Radio Group</h2>
+ <button class='radio'>Button A</button>
+ <button class='radio'>Button B</button>
+ <button class='radio'>Button C</button>
+ </div>
+</div></pre>
+
+<h4 id="source-javascript">Source: JavaScript</h4>
+<pre class="code prettyprint">YUI().use('button-group', function(Y){
+
+ // A group of checkbox-like buttons
+ var buttonGroupCB = new Y.ButtonGroup({
+ srcNode: '#checkboxContainer',
+ type: 'checkbox',
+ on: {
+ 'selectionChange': function(e){
+ var selection = buttonGroupCB.getSelectedButtons();
+ Y.log('buttonGroup2 selected count = ' + selection.length);
+ }
+ }
+ }).render();
+
+
+ // A group of radio-like buttons
+ var buttonGroupRadio = new Y.ButtonGroup({
+ srcNode: '#radioContainer',
+ type: 'radio'
+ })
+
+ buttonGroupRadio.render();
+
+ buttonGroupRadio.on('selectionChange', function(e){
+ Y.log('buttonGroup selection changed');
+ });
+
+});</pre>
+
+</div>
+ </div>
+ </div>
+
+ <div class="yui3-u-1-4">
+ <div class="sidebar">
+
+ <div id="toc" class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Table of Contents</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="toc">
+<li>
+<a href="#checkbox-group">Checkbox Group</a>
+</li>
+<li>
+<a href="#radio-group">Radio Group</a>
+<ul class="toc">
+<li>
+<a href="#source-html">Source: HTML</a>
+</li>
+<li>
+<a href="#source-javascript">Source: JavaScript</a>
+</li>
+</ul>
+</li>
+</ul>
+ </div>
+ </div>
+
+
+
+ <div class="sidebox">
+ <div class="hd">
+ <h2 class="no-toc">Examples</h2>
+ </div>
+
+ <div class="bd">
+ <ul class="examples">
+
+
+ <li data-description="This example shows how you can easily style button and non-button DOM elements to appear as buttons">
+ <a href="cssbutton.html">Styling elements with cssbutton</a>
+ </li>
+
+
+
+ <li data-description="This example shows a simple, light solution to enhance <button> nodes">
+ <a href="button-plugin.html">Enhancing <button> nodes with button-plugin</a>
+ </li>
+
+
+
+ <li data-description="This example demonstrates how to create button widgets">
+ <a href="button-basic.html">Basic button widgets</a>
+ </li>
+
+
+
+ <li data-description="This example demonstrates how to create a widget containing a group of buttons">
+ <a href="button-group.html">Managing groups of buttons with button-group</a>
+ </li>
+
+
+ </ul>
+ </div>
+ </div>
+
+
+
+ </div>
+ </div>
+ </div>
+</div>
+
+<script src="../assets/vendor/prettify/prettify-min.js"></script>
+<script>prettyPrint();</script>
+
+<script>
+YUI.Env.Tests = {
+ examples: [],
+ project: '../assets',
+ assets: '../assets/button',
+ name: 'button-group',
+ title: 'Managing groups of buttons with button-group',
+ newWindow: '',
+ auto: false
+};
+YUI.Env.Tests.examples.push('cssbutton');
+YUI.Env.Tests.examples.push('button-plugin');
+YUI.Env.Tests.examples.push('button-basic');
+YUI.Env.Tests.examples.push('button-group');
+
+</script>
+<script src="../assets/yui/test-runner.js"></script>
+
+
+
+</body>
+</html>