Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

mbb

remover todas as TR

Recommended Posts

ola!Pessoal como faço para remover todas as TR´s de uma tabela ? ja tentei por removeNode()... mas não rolou ? e pelo o id que fica na TR tbm não rolou :( abs

Compartilhar este post


Link para o post
Compartilhar em outros sites

mbb, a função removeNode() não é interpretada por todos os browsers.

 

utilize o método convencional.

 

key-words

- add remove rows

 

 

//add a new row to the table   function addRow()   {	//add a row to the rows collection and get a reference to the newly added row	var newRow = document.all("tblGrid").insertRow();		//add 3 cells (<td>) to the new row and set the innerHTML to contain text boxes		var oCell = newRow.insertCell();	oCell.innerHTML = "<input type='text' name='t1'>";		oCell = newRow.insertCell();	oCell.innerHTML = "<input type='text' name='t2'>";		oCell = newRow.insertCell();	oCell.innerHTML = "<input type='text' name='t3'>  <input type='button' value='Delete' onclick='removeRow(this);'/>";      }      //deletes the specified row from the table   function removeRow(src)   {	/* src refers to the input button that was clicked. 	   to get a reference to the containing <tr> element,	   get the parent of the parent (in this case <tr>)	*/   	var oRow = src.parentElement.parentElement;  		//once the row reference is obtained, delete it passing in its rowIndex   	document.all("tblGrid").deleteRow(oRow.rowIndex);     }

fonte: http://www.codeproject.com/useritems/DHTMLGrid.asp

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.