Torna indietro   Hardware Upgrade Forum > Software > Programmazione

HP Imagine 2026: abbiamo visto HP IQ all’opera, ecco cosa può (e non può) fare
HP Imagine 2026: abbiamo visto HP IQ all’opera, ecco cosa può (e non può) fare
A New York HP ha messo al centro della scena HP IQ, la piattaforma di IA locale da 20 miliardi di parametri. L’abbiamo vista in funzione: è uno strumento che funziona, pensato per un target specifico, con vantaggi reali e limiti altrettanto evidenti
PNY RTX 5080 Slim OC, sembra una Founders Edition ma non lo è
PNY RTX 5080 Slim OC, sembra una Founders Edition ma non lo è
La PNY GeForce RTX 5080 Slim OC si distingue nel panorama delle GPU di fascia alta per il design compatto a due slot, ispirato alla NVIDIA GeForce RTX 5080 Founders Edition. In questo test analizziamo comportamento termico e prestazioni in gioco, valutando se il formato ridotto comprometta o meno l'esperienza complessiva rispetto alle soluzioni più ingombranti presenti sul mercato.
Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei
Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei
HUAWEI WiFi Mesh X3 Pro Suite è probabilmente il router mesh più fotogenico che si possa acquistare oggi in Italia, ma dietro il guscio in acrilico trasparente e le luci LED dinamiche c'è una macchina tecnica costruita attorno allo standard Wi-Fi 7, con velocità teoriche Dual-Band fino a 3,6 Gbps e una copertura fino a 120 m² una volta abbinato il router principale all'extender incluso nel kit
Tutti gli articoli Tutte le news

Vai al Forum
Rispondi
 
Strumenti
Old 08-01-2008, 09:57   #1
DarkSun84
Member
 
L'Avatar di DarkSun84
 
Iscritto dal: Oct 2005
Città: Roma
Messaggi: 175
Javascript

Salve, volevo sapere come si potevano mettere dei form html all'interno di celle di una tabella che mi creo con javascript. grazie.
__________________
AN7, Athlon xp2400 @2400MHz, OCZ pc 3700 gold, 6600GT @600MHz, raid0 with seagate, Pioneer DVD-RW DVR-115D, PCTV, Thermaltake Purepower 420W, OCLABS liquid, Gentoo powered. MyCase, Bubble-TraProjex visita il mio sito:
www.ecoglobo.it
DarkSun84 è offline   Rispondi citando il messaggio o parte di esso
Old 09-01-2008, 10:08   #2
valse
Senior Member
 
L'Avatar di valse
 
Iscritto dal: Sep 2001
Città: Lecco
Messaggi: 404
Quote:
Originariamente inviato da DarkSun84 Guarda i messaggi
Salve, volevo sapere come si potevano mettere dei form html all'interno di celle di una tabella che mi creo con javascript. grazie.
Cerca di essere più chiaro... magari con lo scopo che devi raggiungere...
__________________
Dell XPS 17 Sandy Bridge (L702x) • Kingston 128GB SSDNow V100 • Zalman ZM-NC3000U Cooler • tastiera retroilluminata
valse è offline   Rispondi citando il messaggio o parte di esso
Old 10-01-2008, 11:51   #3
DarkSun84
Member
 
L'Avatar di DarkSun84
 
Iscritto dal: Oct 2005
Città: Roma
Messaggi: 175
tramite questo bottone:
Codice:
<button onClick="addTestHttp()">http</button>
voglio aggiungere dinamicamente in una tabella html delle righe in cui in ogni cella avrà dei dati da inserire tramite dei form, ho trovato il seguente modo:
Codice:
var numRow=-1;
mycurrent_row=new Array();

function addTestHttp(){
numRow++;
 mycurrent_row[numRow] = document.createElement("tr");
for(var i = 0; i < 6; i++) {

if(i==0){
mycurrent_cell0= document.createElement("td");
mycurrent_cell0.innerHTML=numRow;
/ /appends the cell<td> into the row<tr>           mycurrent_row[numRow].appendChild(mycurrent_cell0);
				}



if(i==1){
mycurrent_cell1= document.createElement("td");
mycurrent_cell1.innerHTML="<SELECT name=list onchange=AddRow1(mycurrent_cell1,numRow)><option>www.esa.it</option><option>www.google.com</option><optionwww.nasa.gov</option><option>manual</option></SELECT>";
 // appends the cell <td> into the row <tr>
                mycurrent_row[numRow].appendChild(mycurrent_cell1);
				}
  }
}


function AddRow1(cell,num)
{
cell.innerHTML="<input type=text name=textField>";
alert(num);
}
Ho il seguente problema che non riesco a prendere i dati inseriti nel form della cella, tramite il php con la variabile $_POST[...] se qualcuno mi può aiutare.
__________________
AN7, Athlon xp2400 @2400MHz, OCZ pc 3700 gold, 6600GT @600MHz, raid0 with seagate, Pioneer DVD-RW DVR-115D, PCTV, Thermaltake Purepower 420W, OCLABS liquid, Gentoo powered. MyCase, Bubble-TraProjex visita il mio sito:
www.ecoglobo.it

Ultima modifica di DarkSun84 : 10-01-2008 alle 11:53.
DarkSun84 è offline   Rispondi citando il messaggio o parte di esso
Old 10-01-2008, 13:08   #4
valse
Senior Member
 
L'Avatar di valse
 
Iscritto dal: Sep 2001
Città: Lecco
Messaggi: 404
...mi manca un punto... io ho una tabella... aggiungo una riga o colonna con dentro un campo di testo via javascript e questo è ok... poi voglio mandare tramite submit della pagina il contenuto di tutte le righe/colone create giusto?

Io farei un unico form e quando creo dinamicamente la input textbox devo anche assegnargli un id (es. text_01, text_02) che richiamo in post nella pagina seguente...

...se così nn funzia vai di query string ;-)
__________________
Dell XPS 17 Sandy Bridge (L702x) • Kingston 128GB SSDNow V100 • Zalman ZM-NC3000U Cooler • tastiera retroilluminata
valse è offline   Rispondi citando il messaggio o parte di esso
Old 10-01-2008, 17:31   #5
DarkSun84
Member
 
L'Avatar di DarkSun84
 
Iscritto dal: Oct 2005
Città: Roma
Messaggi: 175
posto le modifiche fatte:
Codice:
var numberRow=0;
tr= new Array();


function addHtmlTest() {      //////   HTTP TEST   //////

  numberRow++;
  tr[numberRow]=document.createElement('tr');  	// - now create the tr and td elements
  var td0=document.createElement('td');
  var td1=document.createElement('td');
  var td2=document.createElement('td');
  var td3=document.createElement('td');
  var td4=document.createElement('td');
  var td5=document.createElement('td');

  td0.style.textAlign='center'; 	td0.style.padding='3px';
  td1.style.textAlign='center';   	td1.style.padding='3px';
  td2.style.textAlign='center';     td2.style.padding='3px';
  td3.style.textAlign='center';		td3.style.padding='3px';
  td4.style.textAlign='center';		td4.style.padding='3px';
  td5.style.textAlign='center';		td5.style.padding='3px';



var tdText0=document.createTextNode('HTTP-test'+numberRow);  //  create the text that will go in the table cell

var address = document.createElement('select');     

//select form address http

address.setAttribute("id","addressHttp");
//address.setAttribute("name","addressHttp");

//first option

//create an option

theOption=document.createElement("OPTION");

//make text

theText=document.createTextNode("www.esa.it");

//add the text to the option

theOption.setAttribute("value","http://www.esa.int/esaCP/Italy.html");

theOption.appendChild(theText);

//add the option to the select

address.appendChild(theOption);

//second option

theOption=document.createElement("OPTION");

theText=document.createTextNode("www.nasa.gov");

theOption.appendChild(theText);

theOption.setAttribute("value","www.nasa.gov");

address.appendChild(theOption);

//third option

theOption=document.createElement("OPTION");

theText=document.createTextNode("others");

theOption.appendChild(theText);

theOption.setAttribute("value","others");

address.appendChild(theOption);


  var start= document.createElement('input');
  start.setAttribute('type','text');
  start.setAttribute('id','START');
  start.setAttribute('name','start');
  start.setAttribute('value','0');


  var end= document.createElement('input');
  end.setAttribute('type','text');
  end.setAttribute('name','end');
  end.setAttribute('value','5');




// source

td4.innerHTML="<select name=st><?php for($i=0;$i<$_SESSION['st'];$i++){for( $e=0;$e<$_SESSION["numberUser[$i]"];$e++ ){$t=$i+1;$u=$e+1;echo '<option>'."ST$t".'-'."UT$u".'</option>';}}?></select>";


// destionation


td5.innerHTML="<select name=st><?php for($i=0;$i<$_SESSION['st'];$i++){for( $e=0;$e<$_SESSION["numberUser[$i]"];$e++ ){$t=$i+1;$u=$e+1;echo '<option>'."ST$t".'-'."UT$u".'</option>';}}?></select>";



  // - Now start building the table.  It's like filling a big container with successively smaller ones, just in reverse

  td0.appendChild(tdText0);  					// - put the text node in the table cell
  td1.appendChild(address);
  td2.appendChild(start);
  td3.appendChild(end);
 
  tr[numberRow].appendChild(td0); 						// - put the cell into the row
  tr[numberRow].appendChild(td1);
  tr[numberRow].appendChild(td2);
  tr[numberRow].appendChild(td3);
  tr[numberRow].appendChild(td4);
  tr[numberRow].appendChild(td5);


 tb.appendChild(tr[numberRow]); 					// - put the row into the tbody
t.appendChild(tb);						// - put the tbody into the table
ourDiv.appendChild(t); 					// - put the table into the div
}
creazione dell'unico form come mi hai suggerito
Codice:
 create the form element and it's attributes
  var f=document.createElement('form');
 // f.setAttribute('name','myForm');
  f.setAttribute('action','configTest.php');
  //f.setAttribute('target','_blank');
  f.setAttribute('method','post');
  f.setAttribute("id","formTable");
creazione tabella iniziale:
Codice:
  var ourDiv=document.getElementById('tableTest');
  var t=document.createElement('table');	// - start by creating the table element
  f.appendChild(t);
  var tb=document.createElement('tbody');  	// - create a tbody element

   // sets the border attribute of mytable to 2;
        t.setAttribute("border","2");
        t.setAttribute("width","100%");
		t.setAttribute("cellspacing","2");
		t.setAttribute("cellpadding","2");

  var tr=document.createElement('tr');  	// - now create the tr and td elements
  var td0=document.createElement('td');
  var td1=document.createElement('td');
  var td2=document.createElement('td');
  var td3=document.createElement('td');
  var td4=document.createElement('td');
  var td5=document.createElement('td');

  td0.style.textAlign='center'; 	td0.style.padding='3px';
  td1.style.textAlign='center';   	td1.style.padding='3px';
  td2.style.textAlign='center';     td2.style.padding='3px';
  td3.style.textAlign='center';		td3.style.padding='3px';
  td4.style.textAlign='center';		td4.style.padding='3px';
  td5.style.textAlign='center';		td5.style.padding='3px';

  var tdText0=document.createTextNode('Name-Test');  // - create the text that will go in the table cell
  var tdText1=document.createTextNode('Details of test');
  var tdText2=document.createTextNode('Start');
  var tdText3=document.createTextNode('End');
  var tdText4=document.createTextNode('Source');
  var tdText5=document.createTextNode('Destination');


  // - Now start building the table.  It's like filling a big container with successively smaller ones, just in reverse

  td0.appendChild(tdText0);  					// - put the text node in the table cell
  td1.appendChild(tdText1);
  td2.appendChild(tdText2);
  td3.appendChild(tdText3);
  td4.appendChild(tdText4);
  td5.appendChild(tdText5);


  tr.appendChild(td0); 						// - put the cell into the row
  tr.appendChild(td1);
  tr.appendChild(td2);
  tr.appendChild(td3);
  tr.appendChild(td4);
  tr.appendChild(td5);


  tb.appendChild(tr); 						// - put the row into the tbody
  t.appendChild(tb);						// - put the tbody into the table
  ourDiv.appendChild(t);



var b= document.createElement('input');
  b.setAttribute('type','submit');
  //b.setAttribute('name','start');
  b.setAttribute('value','Save');
  f.appendChild(b);
  document.getElementById('formTest').appendChild(f);
parte del body:
Codice:
<button onClick="addHtmlTest()">http</button>
Ho il problema che non riesco a far passare i valori che inserisco nel form tramite post nella variabili $_POST[...].
__________________
AN7, Athlon xp2400 @2400MHz, OCZ pc 3700 gold, 6600GT @600MHz, raid0 with seagate, Pioneer DVD-RW DVR-115D, PCTV, Thermaltake Purepower 420W, OCLABS liquid, Gentoo powered. MyCase, Bubble-TraProjex visita il mio sito:
www.ecoglobo.it
DarkSun84 è offline   Rispondi citando il messaggio o parte di esso
 Rispondi


HP Imagine 2026: abbiamo visto HP IQ all’opera, ecco cosa può (e non può) fare HP Imagine 2026: abbiamo visto HP IQ all’opera, ...
PNY RTX 5080 Slim OC, sembra una Founders Edition ma non lo è PNY RTX 5080 Slim OC, sembra una Founders Editio...
Wi-Fi 7 con il design di una vetta innevata: ecco il nuovo sistema mesh di Huawei Wi-Fi 7 con il design di una vetta innevata: ecc...
Core Ultra 7 270K Plus e Core Ultra 7 250K Plus: Intel cerca il riscatto ma ci riesce in parte Core Ultra 7 270K Plus e Core Ultra 7 250K Plus:...
PC Specialist Lafité 14 AI AMD: assemblato come vuoi tu PC Specialist Lafité 14 AI AMD: assemblat...
iPhone 18, il mistero sul destino della ...
Motorola lavora al nuovo Razr 70 Ultra: ...
Il programma di ridimensionamento di One...
L'industria statunitense non è co...
La NASA cambia strategia per le missioni...
Mike Fincke, l'astronauta che ha avuto u...
I Meta Ray-Ban Display potrebbero non ar...
La serie di God of War ha trovato l'attr...
Il nuovo iPhone Fold si farà atte...
Ex CEO di Intel furioso verso Wall Stree...
Un foglietto di rame e le prestazioni di...
100 agenti AI per dipendente: quello che...
Le 10 migliori offerte del weekend Amazo...
75'' e 85'' QD-Mini LED: 2 TV interessan...
Offerte Amazon sui componenti hardware P...
Chromium
GPU-Z
OCCT
LibreOffice Portable
Opera One Portable
Opera One 106
CCleaner Portable
CCleaner Standard
Cpu-Z
Driver NVIDIA GeForce 546.65 WHQL
SmartFTP
Trillian
Google Chrome Portable
Google Chrome 120
VirtualBox
Tutti gli articoli Tutte le news Tutti i download

Strumenti

Regole
Non Puoi aprire nuove discussioni
Non Puoi rispondere ai messaggi
Non Puoi allegare file
Non Puoi modificare i tuoi messaggi

Il codice vB è On
Le Faccine sono On
Il codice [IMG] è On
Il codice HTML è Off
Vai al Forum


Tutti gli orari sono GMT +1. Ora sono le: 11:35.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Served by www3v