moveRow method
[This documentation is preliminary and is subject to change.]
Moves a table row to a new position.
Syntax
object.moveRow(indexFrom, indexTo)Standards information
There are no standards that apply here.
Parameters
- indexFrom [in]
-
Type: long
Integer that specifies the index in the rows collection of the table row that is moved.
- indexTo [in]
-
Type: long
Integer that specifies where the row is moved within the rows collection.
Return value
Type: ObjectObject. Returns a reference to the table row that is moved.
Remarks
Rows between the indexFrom and indexTo positions in the rows collection are shifted based on the direction the row moves.
Examples
This example uses the moveRow method to exchange the first and second rows in a table when the user clicks a button.
<SCRIPT>
function fnMove(){
oTable.moveRow(0,1);
}
</SCRIPT>
<INPUT TYPE="button" VALUE="Change Rows" onclick="fnMove()">
<TABLE ID="oTable">
<TR><TD>Cell 1, Row 1</TD></TR>
<TR><TD>Cell 1, Row 2</TD></TR>
</TABLE>
Build date: 3/8/2012