|
|
|
ขอสอบถามครับ หากต้องการ ทำ Element checkbox หลายๆ แถว จะต้องทำยังไง ครับ |
|
|
|
|
|
|
|
ทำได้ครับ ลองทำดู ติดอะไรก็ถามได้ครับ
|
|
|
|
|
Date :
2018-02-07 15:17:56 |
By :
mongkon.k |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมไม่รู้ว่าจะเขียนเขียน แก้ ตรงนี้ ยังไง ดีครับ แนะนำให้ทีครับ จะเปลี่ยนจาก select option เป็น checkbox อะครับ
Code (PHP)
function CreateSelectOption(ele)
{
var objSelect = document.getElementById(ele);
var Item = new Option("", "");
objSelect.options[objSelect.length] = Item;
<?php
while($objResult = mysql_fetch_array($objQuery))
{
?>
var Item = new Option("<?php echo $objResult["Name"];?>", "<?php echo $objResult["CustomerID"];?>");
objSelect.options[objSelect.length] = Item;
<?php
}
?>
}
//*** Column 5 ***//
newCell = newRow.insertCell(4);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><SELECT NAME=\"Column5_"+intLine+"\" ID=\"Column5_"+intLine+"\"></SELECT></center>";
//*** Create Option ***//
CreateSelectOption("Column5_"+intLine)
document.frmMain.hdnMaxLine.value = intLine;
|
|
|
|
|
Date :
2018-02-07 15:35:24 |
By :
sodasing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้ว ครับ ขอบคุณมากมาก ครับผม สำหรับคำแนะนำดีๆ ครับ
|
|
|
|
|
Date :
2018-02-07 21:41:57 |
By :
sodasing |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|