Skip to content

Commit

Permalink
Menu: Test page for table-based menu (hackity hack)
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Feb 23, 2011
1 parent ddfd5e6 commit 98fef9c
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions tests/visual/menu/tablemenu.html
@@ -0,0 +1,67 @@
<!doctype html>
<html>
<head>
<title>Menu Visual Test: Default</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" title="ui-theme" />
<script type="text/javascript" src="../../../jquery-1.4.4.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.menu.js"></script>
<script type="text/javascript">
$(function() {
var table = $("table");
var colgroup = table.find("colgroup");
var menu = $("<ul>").insertAfter(table);
var thead = table.find("thead");
thead.children("tr").addClass("ui-state-default");
var rows = table.find("tbody tr");
$("<table>").width("100%").append(colgroup.clone()).append(thead).wrap("<li>").parent().appendTo(menu);
rows.each(function() {
$("<table>").width("100%").append(colgroup.clone()).append(this).wrap("<li><a></a></li>").parent().parent().appendTo(menu);
});

menu.menu({
select: function(event, ui) {
$("<div/>").text("Selected: " + ui.item.text()).appendTo("#log");
}
});
});
</script>
<style>
body { font-size:62.5%; }
.ui-menu { width: 200px; }
</style>
</head>
<body>

<table>
<colgroup><col style="width: 50%"><col style="width: 50%"></colgroup>
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
</thead>
<tbody>
<tr>
<td>Scott</td>
<td>Gonzo</td>
</tr>
<tr>
<td>Richy</td>
<td>Worth</td>
</tr>
</tbody>
</table>

<div class="ui-widget" style="clear: left; margin-top:2em; font-family:Arial">
Log:
<div id="log" style="height: 400px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
</div>

<button id="toggle-disable">Disable / Enable</button>
<button id="toggle-destroy">Destroy / Create</button>

</body>
</html>

0 comments on commit 98fef9c

Please sign in to comment.