This is the issue I am facing.
There are two tables in my Html page and one down arrow.
On selecting a particular row from Table1 and clicking the
down arrow the row should be moved to the second table.
How can this be done using Dhtml...Please reply
-
Moving data across tables in a webpage. (1 messages)
- Posted by: jil joe
- Posted on: August 23 2004 01:19 EDT
Threaded Messages (1)
- Moving data across tables in a webpage. by Matthew Wilson on August 23 2004 07:18 EDT
-
Moving data across tables in a webpage.[ Go to top ]
- Posted by: Matthew Wilson
- Posted on: August 23 2004 07:18 EDT
- in response to jil joe
Yes it can:
//Create a new row
myRow = tableRef.insertRow(insertIndex);
//Insert a cell
myCell = myRow.insertCell();
myCell.innerHTML = 'some html'