|
|
|
สอบถามเรื่อง CheckBoxList ในการ edit ข้อมูลโดย เมื่อ edit แล้วไม่ให้ข้อมูลใน CheckBoxList แก้ไขได้ |
|
|
|
|
|
|
|
ขอบคุณค๊ะ
แต่การ edit chcekboxlist อยากให้ chcek ช่องที่ 1 หรือ 2 เพียงแค่อันเดียวค๊ะ แล้วก็จำค่า
ไม่ทราบว่าต้องเขียนยังไงค๊ะ เพราะที่เขียนมามัน chcek ทั้งหมดเลยค๊ะ
Code (C#)
try
{
CheckBoxList cbl = (CheckBoxList)FindControl(controlName);
for (int i = 0; i < cbl.Items.Count; i++)
{
if (value.Contains(cbl.Items[i].Value))
{
cbl.Items[i].Selected = true;
}
}
}
catch (Exception e6)
{
|
ประวัติการแก้ไข 2011-07-07 15:01:14
|
|
|
|
Date :
2011-07-07 14:59:58 |
By :
AewTre |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CheckboxList มันสำหรับหลายค่าน่ะครับ
|
|
|
|
|
Date :
2011-07-07 15:03:22 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วไม่ทราบว่าต้องเขียนยังไงค๊ะ
รบกวนหน่อยนะค๊ะ ^^
|
|
|
|
|
Date :
2011-07-07 15:06:35 |
By :
AewTre |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค๊ะ
แต่นันท์ทำเป็น checkboxlist แต่พอเรียกดูแบบ
Code (C#)
try
{
// return ((CheckBoxList)FindControl(controlName)).Text;
string tmpCBL = "";
CheckBoxList cbl = (CheckBoxList)FindControl(controlName);
for (int i = 0; i < cbl.Items.Count; i++ )
{
tmpCBL += cbl.Items[i].Value + ",";
}
tmpCBL = tmpCBL.Substring(0, tmpCBL.Length - 1);
return tmpCBL;
}
catch (Exception e7) {
return "";
}
ก็เรียก checkboxlist ทั้งหมดเลยค๊ะ แต่ตอนนี้นันท์อยากได้ การเรียกแบบเลือกเฉพาะหน้า Checkboxlist ที่เราเลือกค๊ะ นันท์คิดไม่ออกแล้วค๊ะ ^ ^
ตัวอย่างส่วนที่ เป็น checkboxlist ที่นันท์ได้แก้ไขในส่วนของ Checkboxlist ค๊ะ
Code (C#)
public CheckBoxList GetInputCheckBoxList(string controlName)
{
return (CheckBoxList)FindControl(controlName);
}
Code (C#)
try
{
CheckBoxList cbl = (CheckBoxList)FindControl(controlName);
for (int i = 0; i < cbl.Items.Count; i++)
{
if (value.Contains(cbl.Items[i].Value))
{
cbl.Items[i].Selected = true;
}
}
}
catch (Exception e6)
{
Code (C#)
Response.Write("QA Code:" + GetHashValue(hash, "REQ_LINE_QA_CODE"));
ItemForm.SetPreloadInput("cblQACode", GetHashValue(hash, "REQ_LINE_QA_CODE"));
|
|
|
|
|
Date :
2011-07-07 15:23:24 |
By :
AewTre |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-12-17 15:30:41 |
By :
flower |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|