buttons.html revision eee9858dd5e4eed64ca8e0f64241ee1454d30c66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WidgetButtons Manual Test</title>
</head>
<body>
<script>
YUI({filter: 'raw'}).use('base-build', 'widget', 'widget-buttons', function (Y) {
var testWidget = new Y.TestWidget({
headerContent: 'Test Widget',
buttons : [
{
label: 'Destroy',
action: function () {
this.destroy();
}
},
{label: 'Foo'},
{
name : 'close',
section : 'footer',
classNames: ['foo']
}
]
});
testWidget.render('body');
testWidget.getButton('close').set('disabled', true);
testWidget.getButton(1, 'footer').setStyle('color', 'purple');
});
</script>
</body>
</html>