| | |
| | | this.frame = null; |
| | | this.rows = []; |
| | | this.selection = []; |
| | | this.rowcount = 0; |
| | | |
| | | this.subject_col = -1; |
| | | this.shiftkey = false; |
| | |
| | | if (this.list && this.list.tBodies[0]) |
| | | { |
| | | this.rows = new Array(); |
| | | this.rowcount = 0; |
| | | |
| | | var row; |
| | | for(var r=0; r<this.list.tBodies[0].childNodes.length; r++) |
| | |
| | | } |
| | | |
| | | this.init_row(row); |
| | | this.rowcount++; |
| | | } |
| | | |
| | | this.frame = this.list.parentNode; |
| | |
| | | this.list.insertBefore(tbody, this.list.tBodies[0]); |
| | | this.list.removeChild(this.list.tBodies[1]); |
| | | this.rows = new Array(); |
| | | this.rowcount = 0; |
| | | |
| | | if (sel) this.clear_selection(); |
| | | }, |
| | |
| | | this.select_next(); |
| | | |
| | | this.rows[uid] = null; |
| | | this.rowcount--; |
| | | }, |
| | | |
| | | |
| | |
| | | tbody.appendChild(row); |
| | | |
| | | this.init_row(row); |
| | | this.rowcount++; |
| | | }, |
| | | |
| | | |