-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathTable.js
30 lines (23 loc) · 1.02 KB
/
Table.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Packages.Define("GacUI.Layout.Table", ["Class", "GacUI.Types", "GacUI.Layout.Basic"], function (__injection__) {
eval(__injection__);
function FQN(name) {
return "vl::presentation::compositions::Gui" + name + "Composition";
}
/********************************************************************************
GuiTableComposition
********************************************************************************/
var TableLayout = Class(FQN("Table"), BoundsLayout, {
});
/********************************************************************************
GuiCellComposition
********************************************************************************/
var CellLayout = Class(FQN("Cell"), SiteLayout, {
});
/********************************************************************************
Package
********************************************************************************/
return {
TableLayout: TableLayout,
CellLayout: CellLayout,
}
});