You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
7 years ago
|
Demo.Func = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-func"
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
BI.createWidget({
|
||
|
type: "bi.vertical",
|
||
|
hgap: 200,
|
||
|
vgap: 50,
|
||
|
element: this,
|
||
|
items: [{
|
||
|
type: "bi.direction_pager",
|
||
|
}]
|
||
|
})
|
||
|
}
|
||
|
});
|
||
|
BI.shortcut("demo.direction_pager", Demo.Func);
|