You will either need to get developers to add an ID so that you can use table(id:,"ID"), or use an explicit reference to the sequence number of the table - table(:index,table_number).

Your table opening tag looks like this:

<table border="1" cellspacing="0" cellpadding="2">

If you want to use :id to reference the table, you need:

<table id="ID" border="1" cellspacing="0" cellpadding="2">

Jared




Hue Mach Dieu wrote:

Hi All,
I would like get data from table, but when view HTML code of this page,
I don't found the id of this table.


<html>

<head>
<meta http-equiv="Content-Language" content="ja">
<meta http-equiv="Content-Type" content="text/html;">
<link rel="stylesheet" type="text/css" href="../style.css">
<script language="JavaScript"
src="../templates/English/common/function.js"></script>
</head>

<body class="rbody">

<table border="1" cellspacing="0" cellpadding="2">
 <col width="110"> <!-- Date time -->
 <col width="90"><!-- Equipment Code-->
<col width="64"><!-- Alarm ON/OFF-->
 <col width="80"><!-- AlarmType-->
 <col width="150"><!-- AlarmID-->
 <col width="500"> <!-- AlarmText -->
<tr align="center"> <td class="thead">Date Time</td>
   <td class="thead">Equipment Code</td>
<td class="thead">Alarm ON/OFF</td>
   <td class="thead">Alarm Type</td>
   <td class="thead">ALID</td>
   <td class="thead">Alarm Text</td>
 </tr>
......

Thank you for help.




_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general






_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to