oxjs/source/Ox.UI/js/Bar/Ox.Tabbar.js

40 lines
891 B
JavaScript
Raw Normal View History

2011-07-29 18:48:43 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=javascript
2011-11-05 16:46:53 +00:00
'use strict';
2011-05-16 08:24:46 +00:00
/*@
Ox.Tabbar <f:Ox.Bar> Tabbar
() -> <o> Tabbar object
(options) -> <o> Tabbar object
(options, self) -> <o> Tabbar object
options <o> Options object
selected <n|0> selected item
tabs <a|[]> tabs
self <o> Shared private variable
@*/
2011-04-22 22:03:10 +00:00
/**
*/
Ox.Tabbar = function(options, self) {
self = self || {};
var that = Ox.Bar({
2011-04-22 22:03:10 +00:00
size: 20
}, self)
.defaults({
selected: 0,
tabs: []
})
.options(options || {})
.addClass('OxTabbar');
Ox.ButtonGroup({
buttons: self.options.tabs,
group: true,
selectable: true,
selected: self.options.selected,
size: 'medium',
style: 'tab'
2011-04-22 22:03:10 +00:00
}).appendTo(that);
return that;
};