Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / dashboard / templates / tryit.html @ 805cc54a

History | View | Annotate | Download (902 Bytes)

1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
2
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml"
4
      xmlns:py="http://genshi.edgewall.org/"
5
      xmlns:xi="http://www.w3.org/2001/XInclude">
6

    
7
  <xi:include href="master.html" />
8

    
9
<head>
10
  <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
11
  <title>Welcome to TurboGears 2.0, standing on the 
12
  shoulders of giants, since 2007</title>
13
</head>
14
<body>
15
        <div class="main_content">
16
                <a href="#" id="lien_open">aaaaa</a>
17
        <div id="tryit" title="oo">
18
                <table><tr><td>table</td><td>1</td></tr></table>
19
        </div>
20
        ${tmpl_context.ui()}
21

    
22
</div>
23
<script type="text/javascript">
24
        $('#lien_open').click(function(e) {
25
                        $('#tryit').dialog('option','position',[e.pageX,e.pageY]);
26
                        $('#tryit').dialog('open');
27
        })
28
</script>
29
</body>
30
</html>