Update of /cvsroot/phpwebapp/web_app/webobjects/dbTable
In directory sc8-pr-cvs1:/tmp/cvs-serv4302/webobjects/dbTable
Modified Files:
editRecord.html dbTable.html
Log Message:
Index: editRecord.html
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/editRecord.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** editRecord.html 16 Jul 2003 09:27:59 -0000 1.2
--- editRecord.html 22 Aug 2003 06:47:19 -0000 1.3
***************
*** 6,14 ****
<tr>
<td bgcolor="#eeeeee" align="right">
! {{fld_name}}:
</td>
<td>
! <input type="text" class="editRecord_field"
! name="{{fld_name}}" value="{{{{fld_name}}}}">
</td>
<tr>
--- 6,14 ----
<tr>
<td bgcolor="#eeeeee" align="right">
! {{fld_name}}:
</td>
<td>
! <input type="text" class="editRecord_field"
! name="{{fld_name}}" value="{{{{fld_name}}}}">
</td>
<tr>
Index: dbTable.html
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/webobjects/dbTable/dbTable.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** dbTable.html 11 Aug 2003 16:17:51 -0000 1.3
--- dbTable.html 22 Aug 2003 06:47:19 -0000 1.4
***************
*** 13,25 ****
<If condition="{{editable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_rmAll('{{obj_id}}')">X</a>
</th>
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_add('{{obj_id}}')">A</a>
</th>
</If>
<If condition="{{selectable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{UNDEFINED}}')"><img border="0" src="{{GRAPHICS}}blue_tri.png"></a>
</th>
</If>
--- 13,25 ----
<If condition="{{editable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_rmAll('{{obj_id}}')">X</a>
</th>
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_add('{{obj_id}}')">A</a>
</th>
</If>
<If condition="{{selectable}}">
<th bgcolor="#eeeeee">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{UNDEFINED}}')"><img border="0" src="{{GRAPHICS}}blue_tri.png"></a>
</th>
</If>
***************
*** 30,52 ****
<Repeat rs="{{table}}->records">
<Var name="bgcolor">("{{rec_id}}"=="{{selected_rec}}" ?
! "#f3f3ff" : "white")</Var>
<tr>
<If condition="{{editable}}">
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_rm('{{obj_id}}', '{{rec_id}}')">X</a>
! </td>
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_edit('{{obj_id}}', '{{rec_id}}')">E</a>
! </td>
</If>
<If condition="{{selectable}}">
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{rec_id}}')">
! <img border="0" src="{{./}}select.png">
! </a>
! </td>
</If>
<Repeat rs="{{table}}->fields">
! <td bgcolor="{{bgcolor}}"> {{{{fld_name}}}} </td>
</Repeat>
</tr>
--- 30,52 ----
<Repeat rs="{{table}}->records">
<Var name="bgcolor">("{{rec_id}}"=="{{selected_rec}}" ?
! "#f3f3ff" : "white")</Var>
<tr>
<If condition="{{editable}}">
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_rm('{{obj_id}}', '{{rec_id}}')">X</a>
! </td>
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_edit('{{obj_id}}', '{{rec_id}}')">E</a>
! </td>
</If>
<If condition="{{selectable}}">
! <td bgcolor="{{bgcolor}}">
! <a href="javascript: dbTable_select('{{obj_id}}', '{{rec_id}}')">
! <img border="0" src="{{./}}select.png">
! </a>
! </td>
</If>
<Repeat rs="{{table}}->fields">
! <td bgcolor="{{bgcolor}}"> {{{{fld_name}}}} </td>
</Repeat>
</tr>
|