asset manager initial check in
This commit is contained in:
parent
4bc4974ecc
commit
f7dd3b0577
320 changed files with 15398 additions and 0 deletions
30
www/extras/assetManager/ActiveWidgets/examples/grid/tooltips.htm
Executable file
30
www/extras/assetManager/ActiveWidgets/examples/grid/tooltips.htm
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>ActiveWidgets Grid :: Examples</title>
|
||||
<style> body, html {margin:0px; padding: 0px; overflow: hidden; font:menu} </style>
|
||||
|
||||
<!-- ActiveWidgets stylesheet and scripts -->
|
||||
<link href="../../runtime/styles/classic/grid.css" rel="stylesheet" type="text/css" ></link>
|
||||
<script src="../../runtime/lib/grid.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
|
||||
// create ActiveWidgets Grid javascript object
|
||||
var obj = new Active.Controls.Grid;
|
||||
|
||||
// set data
|
||||
obj.setRowProperty("count", 5);
|
||||
obj.setColumnProperty("count", 5);
|
||||
obj.setDataProperty("text", function(i, j){return i + "." + j});
|
||||
|
||||
// set column header tooltip
|
||||
obj.setColumnProperty("tooltip", function(i){return "Tooltip for column " + i});
|
||||
|
||||
// write grid html to the page
|
||||
document.write(obj);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue