blob: be65866dd593ea3a1ac58551f338db6341f0d1d8 (
plain)
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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>Testing qx.ui.embed.IconHtmlEmbed.</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var l1 = new qx.ui.embed.IconHtmlEmbed("Hello World", "icon/32/organizer.png", 32, 32);
l1.setLocation(20, 48);
qx.ui.core.ClientDocument.getInstance().add(l1);
});
</script>
</body>
</html>
|