Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F390570
test_grid_programmatic_layout.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
test_grid_programmatic_layout.html
View Options
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<
html
>
<
head
>
<
title
>
Test dojox.Grid Programmatic Instantiation
</
title
>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
></
meta
>
<
style
type
=
"text/css"
>
@
import
"../_grid/tundraGrid.css"
;
@
import
"../../../dojo/resources/dojo.css"
;
@
import
"../../../dijit/themes/tundra/tundra.css"
;
@
import
"../../../dijit/tests/css/dijitTests.css"
;
.
heading
{
font-weight
:
bold
;
padding-bottom
:
0.25
em
;
}
#
grid
{
width
:
100
%
;
height
:
100
%
;
}
</
style
>
<
script
type
=
"text/javascript"
src
=
"../../../dojo/dojo.js"
djConfig
=
"isDebug:false, debugAtAllCosts: false, parseOnLoad: true"
></
script
>
<
script
type
=
"text/javascript"
>
dojo
.
require
(
"dijit.layout.TabContainer"
);
dojo
.
require
(
"dijit.layout.ContentPane"
);
dojo
.
require
(
"dojox.grid.Grid"
);
dojo
.
require
(
"dojox.grid._data.model"
);
dojo
.
require
(
"dojo.parser"
);
</
script
>
<
script
type
=
"text/javascript"
src
=
"support/test_data.js"
></
script
>
<
script
type
=
"text/javascript"
>
dojo
.
addOnLoad
(
function
(){
// a grid view is a group of columns
var
view1
=
{
cells
:
[
[
{
name
:
'Column 0'
},
{
name
:
'Column 1'
},
{
name
:
'Column 2'
},
{
name
:
'Column 3'
,
width
:
"150px"
},
{
name
:
'Column 4'
}
],
[
{
name
:
'Column 5'
},
{
name
:
'Column 6'
},
{
name
:
'Column 7'
},
{
name
:
'Column 8'
,
field
:
3
,
colSpan
:
2
}
]
]
};
// a grid layout is an array of views.
var
layout
=
[
view1
];
var
grid
=
new
dojox
.
Grid
({
title
:
"tab 1"
,
id
:
"grid"
,
model
:
model
,
structure
:
layout
});
dijit
.
byId
(
"mainTabContainer"
).
addChild
(
grid
,
0
);
grid
.
render
();
});
</
script
>
</
head
>
<
body
class
=
"tundra"
>
<
div
class
=
"heading"
>
dojox.Grid Programmatic Instantiation Test
</
div
>
<
div
id
=
"mainTabContainer"
dojoType
=
"dijit.layout.TabContainer"
style
=
"height: 300px; width: 100%;"
>
<
div
dojoType
=
"dijit.layout.ContentPane"
title
=
"Tab 2"
>
... stuff ...
</
div
>
</
div
>
</
body
>
</
html
>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sat, Feb 22, 15:27 (8 h, 8 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26955
Default Alt Text
test_grid_programmatic_layout.html (2 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment