2 wrz 2008

Dynamiczne dodawanie pola pola typu readonly

var cell = document.createElement("td");
inp = document.createElement("input");
if (idx > -1) {
  inp.value = sel.options[idx].text;
}
inp.type = "text";
inp.name = "numer_" + nr;
inp.size = 45;
inp.readOnly = true;
cell.appendChild(inp);

readOnly - Only musi byc z duzą literą( ale chyba tylko dla IE)