SilverStray
Programmer
I have this dynamic row which I created. Everything works fine except that MAXLENGTH attribute doesn't work out. Please tell me what I'm missing...
Here's my code:
var td3 = document.createElement("TD"
var newInput3 = document.createElement("INPUT"
;
newInput3.type= "text";
newInput3.name = "tabHeading_" + rowCtr;
newInput3.size = 100;
newInput3.width = 100;
newInput3.maxlength = 40;
newInput3.className=fieldFormat;
td3.appendChild(newInput3);
Thanks in advance...
Here's my code:
var td3 = document.createElement("TD"
var newInput3 = document.createElement("INPUT"
newInput3.type= "text";
newInput3.name = "tabHeading_" + rowCtr;
newInput3.size = 100;
newInput3.width = 100;
newInput3.maxlength = 40;
newInput3.className=fieldFormat;
td3.appendChild(newInput3);
Thanks in advance...