Hello,
In a table element
How can I insert cell in their order (A, B, C, D ...) on javascript runtime,
but see the cells inserted from right to left.
I am doing :
myTable.row(0). insertCell(0) // cell A
myTable.row(0). insertCell(1) // cell B
myTable.row(0). insertCell(2) // cell C
What I want to see is the cells visible at the html in the order of :
C , B, A.
<TABLE dir = "rtl" .... />
// What else should I write above
Thanks :)
In a table element
How can I insert cell in their order (A, B, C, D ...) on javascript runtime,
but see the cells inserted from right to left.
I am doing :
myTable.row(0). insertCell(0) // cell A
myTable.row(0). insertCell(1) // cell B
myTable.row(0). insertCell(2) // cell C
What I want to see is the cells visible at the html in the order of :
C , B, A.
<TABLE dir = "rtl" .... />
// What else should I write above
Thanks :)
Comment