widget-std-mod.html revision 9a007c0d8b040b9a0f130d12e2e8749d2d2e8b1d
<!DOCTYPE html>
<head>
<style>
body {
font-family:sans-serif;
line-height:120%;
font-size:90%;
}
.yui3-widget { border: 1px solid blue; }
</style>
</head>
<body class="yui3-skin-sam">
<script type="text/javascript">
YUI.add('wid', function(Y){
renderUI : function() {
this.setStdModContent('body', 'first');
this.setStdModContent('body', 'second', 'after');
this.setStdModContent('body', '3', 'after');
this.setStdModContent('body', '4', 'after');
this.setStdModContent('body', '5', 'after');
this.setStdModContent('body', '6', 'before');
},
syncUI : function() {
this.head().setContent('Header');
var footer = this.foot();
this.get('contentBox').appendChild(footer);
footer.setContent("Footer");
}
}, {
ATTRS : {}
});
}, '0.1', {requires : ['widget','widget-stdmod', 'base-build'] });
YUI({filter:"raw"}).use('wid', function(Y){
new Y.Wid().render();
});
</script>
</body>