Grid (Table) with row header and tooltips : JavaScript DHTML examples (example source code) » GUI Components » Table Grid

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   GUI Components   » [  Table Grid  ]   
 



Grid (Table) with row header and tooltips

Please note that some example is only working under IE or Firefox.

<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="gridRuntime/styles/classic/grid.css" rel="stylesheet" type="text/css" ></link>
  <script src="gridRuntime/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>
Download: ActiveWidgets.zip   (344  K)  
Related examples in the same category
1.  List box ( Grid Table )
2.  List view (Selection between two list)
3.  Basic Grid (Table)
4.  Grid (Table) with colored cells
5.  Build a Grid (Table) from CSV data file
6.  Build a Grid (Tree) from a tab separated file
7.  Build a Grid (Table) from yahoo quotes (IE only)
8.  Grid (Table) with image in cells
9.  Grid (Table) with multiple selection
10.  One page two grid (Table)
11.  Data in Grid (Table) from XML file
12.  Grid (Table) with Data Island and Column highlight
13.  Grid (Table) with cell format and XML data set
14.  Grid (Table) data from RSS (IE only)
15.  Grid (Table) data from xml file 2
16.  Grid (Table) with news feeder (IE only)
17.  Grid (Table) with quotes feeder (IE only)
18.  Grid (Table) in Unix style
19.  Sortable Grids (table)
20.  Selectable Cells Grid Table
21.  Editable Grid Table cell
22.  Call back action in Grid Table
23.  Table Grid Rows Selection
24.  Grid Table Columns Resize
25.  Table Grid Column Renderers
26.  Sorting for each column or double click to edit its contents.
27.  Table Grid style and sort the style
28.  Table in JavaScript
29.  Web Data Grid Table








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.