|
|
|
อยากจะกำหนด PHP multiple input text field/Textbox ให้เพิ่มได้แค่ 5 ช่องต่อ row ลงมาทำอย่างไงครับ |
|
|
|
|
|
|
|
เพิ่มได้แค่ 5 ช่องต่อ row
ตอนนี้มันก็ได้แค่ 5 ช่อง(column) ต่อ row นิครับ
หรือคุณหมายถึงว่าได้แค่ 5 row หรือเปล่าครับ
ถ้าหมายถึงเพิ่มได้ 5 row(แถว) ก็ตามนี้
ปรับ function CreateNewRow(JavaScript)
function CreateNewRow()
{
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;
if(parseInt(intLine) >5){
alert('เพิ่มได้ 5 แถวเท่านั้น');
return;
}
var theTable = document.all.tbExp
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var item1 = 1
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column1_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 2 ***//
newCell = newRow.insertCell(1)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column2_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 3 ***//
newCell = newRow.insertCell(2)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column3_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 4 ***//
newCell = newRow.insertCell(3)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column4_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 5 ***//
newCell = newRow.insertCell(4)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"5\" NAME=\"Column5_"+intLine+"\" VALUE=\"\"></center>"
document.frmMain.hdnMaxLine.value = intLine;
}
|
|
|
|
|
Date :
2012-12-11 10:54:24 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วผมอยากให้ ช่อง row แสดงก่อน 1 ช่อง โดยที่ไม่ต้องกดปุ่มเพิ่ม (+) จะต้องทำอย่างไรครับ
ขอบคุณคับ คุณ mangkunzo
|
|
|
|
|
Date :
2012-12-12 08:40:54 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|