Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > สอบถามเรื่องการ createElement เพิ่ม และประยุกต์ใช้กับ code ของผมครับ



 

สอบถามเรื่องการ createElement เพิ่ม และประยุกต์ใช้กับ code ของผมครับ

 



Topic : 082765



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์




ผมทำตาม ตัวอย่างจาก link ที่1 ผมอยากได้แบบที่สามรถ เพิ่มจำนวนของ createElement ได้เหมือนตัวอย่างจาก link ที่ 2

https://www.thaicreate.com/community/list-select-menu-auto-fill-textbox.html <<< link1


https://www.thaicreate.com/php/forum/048745.html <<< link 2


ไม่รู้จะประยุกต์ให้เข้ากันยังไง วานท่านพี่ๆผู้รู้โปรดชี้แนะหน่อยนะครับผม

จากโค้ดด้านล่างที่ผมทำคือ เมื่อ select ข้อมูลจากช่องแรก โปรแกรมจะทำการดึงข้อมูลในฐานข้อมูลออกมาแสดงใน input ช่องอื่นๆครับ

Code (PHP)
<html>
<head>
<title>CSSC || DATABASE</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
$(document).ready(function(){

		$('select[name*="txtCustomerID"]').change("change", function (){
			var currentIndex = $(this).closest("tr")[0].rowIndex;

			$.ajax({ 
				url: "returnCustomer2.php" ,
				type: "POST",
				data: 'sCusID=' +$("#txtCustomerID"+currentIndex).val()
			})
			.success(function(result) { 
				var obj = jQuery.parseJSON(result);
				
					if(obj == '')
					{
					   $("#txtCustomerID"+currentIndex).val('');
					   $("#txtName"+currentIndex).val('');
					   $("#txtEmail"+currentIndex).val('');
					   $("#txtCountryCode"+currentIndex).val('');
					   $("#txtBudget"+currentIndex).val('');
					   $("#txtUsed"+currentIndex).val('');
					}
					else
					{
					  $.each(obj, function(key, inval) {

						   $("#txtCustomerID"+currentIndex).val(inval["CombinedStd_Item"]);
						   $("#txtName"+currentIndex).val(inval["StandardNumber"]);
						   $("#txtEmail"+currentIndex).val(inval["ItemInStandard"]);
						   $("#txtCountryCode"+currentIndex).val(inval["Description"]);
						   $("#txtBudget"+currentIndex).val(inval["LabGroup"]);
						   $("#txtUsed"+currentIndex).val(inval["TP_Lab"]);

					  });
					}

				});


		});

	
	});
</script>

</head>
<body>
<h2>jQuery Auto fill</h2>
<input name="btnAdd" type="text" id="btnAdd"/>
<form action="phpMySQLAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
  <tr>
    <th width="91"> <div align="center">CombinedStd_Item</div></th>
    <th width="160"> <div align="center">StandardNumber</div></th>
    <th width="198"> <div align="center">ItemInStandard</div></th>
    <th width="97"> <div align="center">Description</div></th>
    <th width="70"> <div align="center">LabGroup</div></th>
    <th width="70"> <div align="center">TP_Lab</div></th>
  </tr>
  <?
  for($i=1;$i<=20;$i++)
  {
  ?>
  <tr>
    <td><div align="center">
	<select name="txtCustomerID<?=$i;?>" id="txtCustomerID<?=$i;?>">
			<option value=""><-- Please Select Item --></option>
			<?
			$objConnect = mysql_connect("localhost","root","csscadmin") or die(mysql_error());
			$objDB = mysql_select_db("csscdatabase");
			mysql_query("SET NAMES UTF8");
			$strSQL = "SELECT * FROM tst_pvt_standarditem ORDER BY id ASC";
			$objQuery = mysql_query($strSQL);
			while($objResult = mysql_fetch_array($objQuery))
			{
				if($_GET["item"] == $objResult["CombinedStd_Item"])
				{
					$sel = "selected";
				}
				else
				{
					$sel = "";
				}
			?>
			<option value="<?=$objResult["CombinedStd_Item"];?>" <?=$sel;?>><?=$objResult["CombinedStd_Item"];?></option>
			<?
			}
			?>
		  </select>

	
	</div></td>
    <td><input type="text" name="txtName<?=$i;?>"  id="txtName<?=$i;?>" size="20"></td>
    <td><input type="text" name="txtEmail<?=$i;?>" id="txtEmail<?=$i;?>" size="25"></td>
    <td><div align="center"><input type="text" name="txtCountryCode<?=$i;?>" id="txtCountryCode<?=$i;?>" size="40"></div></td>
    <td align="right"><input type="text" name="txtBudget<?=$i;?>" id="txtBudget<?=$i;?>" size="10"></td>
    <td align="right"><input type="text" name="txtUsed<?=$i;?>" id="txtUsed<?=$i;?>" size="20"></td>
  </tr>
  <?
  }
  ?>
  </table>
<input type="hidden" name="hdnLine" value="<?=$i;?>">

</form>
</body>
</html>




Code (PHP)
<?
	$objConnect = mysql_connect("localhost","root","csscadmin") or die(mysql_error());
	$objDB = mysql_select_db("csscdatabase");
	mysql_query("SET NAMES UTF8");
	$strSQL = "SELECT * FROM tst_pvt_standarditem WHERE 1 AND CombinedStd_Item = '".$_POST["sCusID"]."' ";
	$objQuery = mysql_query($strSQL) or die (mysql_error());
	$intNumField = mysql_num_fields($objQuery);
	$resultArray = array();
	while($obResult = mysql_fetch_array($objQuery))
	{
		$arrCol = array();
		for($i=0;$i<$intNumField;$i++)
		{
			$arrCol[mysql_field_name($objQuery,$i)] = $obResult[$i];
		}
		array_push($resultArray,$arrCol);
	}
	
	mysql_close($objConnect);
	
	echo json_encode($resultArray);
?>


ผมทำแบบนี้



Tag : PHP, MySQL, JavaScript, Ajax, jQuery









ประวัติการแก้ไข
2012-08-22 18:24:59
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-08-22 18:22:32 By : rocknrolls View : 1252 Reply : 9
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ลองดูบทความนี้เพิ่มเติมครับ



Go to : Passing Popup to Main Page เทคนิคการส่งค่าจาก Popup ไปยังหน้าเพจ Form หลัก






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-22 22:04:51 By : mr.win
 


 

No. 2



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


ลองดูแล้วยังทำไม่ได้เลยครับพี่วิน

ผมเข้าใจถูกเปล่าครับ จากตัวอย่างที่พี่ให้มา ผมลองทำตามคือเมื่อเลือก CounttyCode แล้ว ข้อมูลที่อยู่ในตาราง Customer จะมาขึ้นอยู่ใน textbox ที่เหลือ ผมลองรันดูแล้วมันไม่ขึ้นครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-23 12:49:15 By : rocknrolls
 

 

No. 3



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


ตอนนี้ผมทำให้มันเพิ่มได้แล้วครับ โดยใช้ jQuery แต่เมื่อเลือกค่าจาก ฟิลล์แรก ค่าจาก database จะไม่ขึ้นมาแสดงด้วยอะครับ ต้องแก้ยังไงช่วยทีครับ

Code (PHP)
<html>
<head>
<title>CSSC || DATABASE</title>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
$(document).ready(function(){

		$('select[name*="txtCustomerID"]').change("change", function (){
			var currentIndex = $(this).closest("tr")[0].rowIndex;

			$.ajax({ 
				url: "returnCustomer2.php" ,
				type: "POST",
				data: 'sCusID=' +$("#txtCustomerID"+currentIndex).val()
			})
			.success(function(result) { 
				var obj = jQuery.parseJSON(result);
				
					if(obj == '')
					{
					   $("#txtCustomerID"+currentIndex).val('');
					   $("#txtName"+currentIndex).val('');
					   $("#txtEmail"+currentIndex).val('');
					   $("#txtCountryCode"+currentIndex).val('');
					   $("#txtBudget"+currentIndex).val('');
					   $("#txtUsed"+currentIndex).val('');
					}
					else
					{
					  $.each(obj, function(key, inval) {

						   $("#txtCustomerID"+currentIndex).val(inval["CombinedStd_Item"]);
						   $("#txtName"+currentIndex).val(inval["StandardNumber"]);
						   $("#txtEmail"+currentIndex).val(inval["ItemInStandard"]);
						   $("#txtCountryCode"+currentIndex).val(inval["Description"]);
						   $("#txtBudget"+currentIndex).val(inval["LabGroup"]);
						   $("#txtUsed"+currentIndex).val(inval["TP_Lab"]);

					  });
					}

				});


		});

	
	});
</script>
<script type="text/javascript">
	$(document).ready(function(){
		$('#add_item').click(function(){
			$('#mytbl tbody tr').last().clone().appendTo('#mytbl tbody');
		});
	});
	function doRemoveItem(obj){
		if($('#mytbl tbody tr').size() > 1){
			if(confirm('คุณต้องการลบแถวนี้?')) $(obj).parent().parent().remove();
		}else{
			alert('ไม่อนุญาตให้ลบแถวที่เหลือนี้ได้');
		}
	}
</script>

</head>
<body>
<form action="phpMySQLAddSave.php" name="frmAdd" method="post" >
<table width="600" border="1" id="mytbl">
<thead>
  <tr>
    <th width="91"> <div align="center">CombinedStd_Item</div></th>
    <th width="160"> <div align="center">StandardNumber</div></th>
    <th width="198"> <div align="center">ItemInStandard</div></th>
    <th width="97"> <div align="center">Description</div></th>
    <th width="70"> <div align="center">LabGroup</div></th>
    <th width="70"> <div align="center">TP_Lab</div></th>
    <th width="70"> <div align="center">ลบ</div></th>
  </tr>
 </thead>
 <tbody>
  <?
  for($i=1;$i<=1;$i++)
  {
  ?>
  
  <tr>
    <td><div align="center">
	<select name="txtCustomerID<?=$i;?>" id="txtCustomerID<?=$i;?>">
			<option value=""><-- Please Select Item --></option>
			<?
			$objConnect = mysql_connect("localhost","root","csscadmin") or die(mysql_error());
			$objDB = mysql_select_db("csscdatabase");
			mysql_query("SET NAMES UTF8");
			$strSQL = "SELECT * FROM tst_pvt_standarditem ORDER BY id ASC";
			$objQuery = mysql_query($strSQL);
			while($objResult = mysql_fetch_array($objQuery))
			{
				if($_GET["item"] == $objResult["CombinedStd_Item"])
				{
					$sel = "selected";
				}
				else
				{
					$sel = "";
				}
			?>
			<option value="<?=$objResult["CombinedStd_Item"];?>" <?=$sel;?>><?=$objResult["CombinedStd_Item"];?></option>
			<?
			}
			?>
		  </select>

	
	</div></td>
    <td><input type="text" name="txtName<?=$i;?>"  id="txtName<?=$i;?>" size="20"></td>
    <td><input type="text" name="txtEmail<?=$i;?>" id="txtEmail<?=$i;?>" size="25"></td>
    <td><div align="center"><input type="text" name="txtCountryCode<?=$i;?>" id="txtCountryCode<?=$i;?>" size="40"></div></td>
    <td align="right"><input type="text" name="txtBudget<?=$i;?>" id="txtBudget<?=$i;?>" size="10"></td>
    <td align="right"><input type="text" name="txtUsed<?=$i;?>" id="txtUsed<?=$i;?>" size="20"></td>
	<td align="middle"><button onclick="javascript:doRemoveItem(this);" style="width:22px;">-</button>
  </tr>
  
  <?
  }
  ?>
  </tbody>
  </table>
  <div style="margin:5px auto 0px auto;"><button type="button" id="add_item" style="width:22px;" >+</button></div>
<input type="hidden" name="hdnLine" value="<?=$i;?>">

</form>
</body>
</html>



ได้ผลแบบนี้ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-23 16:52:10 By : rocknrolls
 


 

No. 4



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


วานผู้รู้ช่วยทีนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-24 10:21:41 By : rocknrolls
 


 

No. 5



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


แง่ววว เงียบจังง
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-27 13:20:44 By : rocknrolls
 


 

No. 6



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ผมดูไม่ได้ครับ เพราะผมรันไม่ได้ครับ ได้แค่แนะนำครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-27 20:49:22 By : mr.win
 


 

No. 7



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


ลองใช้ element inspector tool ของ browser ดูซิครับ แล้วจะเห็นว่ามัน error หรือเปล่า ถ้าไม่ error ก็ลอง alert result ออกมาดู
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-27 20:55:11 By : ikikkok
 


 

No. 8



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 6 เขียนโดย : mr.win เมื่อวันที่ 2012-08-27 20:49:22
รายละเอียดของการตอบ ::
ถ้าจะโพส database ลงตรงนี้จะเป็นไรป่าวครับ แล้วต้องไป upload ตรงไหนครับผม

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-28 10:46:08 By : rocknrolls
 


 

No. 9



โพสกระทู้ ( 23 )
บทความ ( 0 )



สถานะออฟไลน์


ตอบความคิดเห็นที่ : 6 เขียนโดย : mr.win เมื่อวันที่ 2012-08-27 20:49:22
รายละเอียดของการตอบ ::

http://www.mediafire.com/?lz2o1m50sone1z2 <<< File Database ครับ รบกวนหน่อยแล้วกันครับพี่วิน





ประวัติการแก้ไข
2012-08-30 13:43:18
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-08-30 13:37:13 By : rocknrolls
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : สอบถามเรื่องการ createElement เพิ่ม และประยุกต์ใช้กับ code ของผมครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่