Salve a tutti,
sto cercando di creare dinamicamente una semplice griglia che dovrà contenere delle select list e dei text input.
La struttura esistente è <table id="grid"></table>, dinamicamente con una funzione vado a generare i <tr> e i <td>
function showGridDetails( num )
{
var gridbox = document.getElementById("grid");
for( var i=0; i<num; i++ )
{
var row = document.createElement( "tr" );
var cell = document.createElement( "td" );
var text = document.createTextNode ( "row " + i );
cell.appendChild ( text );
row.appendChild( cell );
gridbox.appendChild( row );
}
Perchè vedo nulla??? Non riesco a capire dove sbaglio... Qual'è lo stupido errore che commetto??? Grazie a tutti
--
F
sto cercando di creare dinamicamente una semplice griglia che dovrà contenere delle select list e dei text input.
La struttura esistente è <table id="grid"></table>, dinamicamente con una funzione vado a generare i <tr> e i <td>
function showGridDetails( num )
{
var gridbox = document.getElementById("grid");
for( var i=0; i<num; i++ )
{
var row = document.createElement( "tr" );
var cell = document.createElement( "td" );
var text = document.createTextNode ( "row " + i );
cell.appendChild ( text );
row.appendChild( cell );
gridbox.appendChild( row );
}
Perchè vedo nulla??? Non riesco a capire dove sbaglio... Qual'è lo stupido errore che commetto??? Grazie a tutti
--
F