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 > .NET Framework > Forum > ปัญหาสร้าง combobox หลายอันไม่ได้.............................!?



 

ปัญหาสร้าง combobox หลายอันไม่ได้.............................!?

 



Topic : 057510



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



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




สร้างหลายอันแล้วเป็นแบบนี้ครับ ต้องทำอย่างไร





Tag : .NET, Web (ASP.NET), C#







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-03-19 18:42:26 By : hamzter View : 1237 Reply : 6
 

 

No. 1



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



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


ขอรายละเอียด ว่าจะเอาไปทำอะไร...






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-19 22:12:46 By : koungkung
 


 

No. 2



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



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


กรอกข้อมูลแล้ว add ลง db ครับ
ตรง combobox ดึงข้อมูลมาให้เลือก
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-19 22:32:37 By : hamzter
 

 

No. 3

Guest


รู้สึกเจ้า ajax combobox จะมีปัญหาตอนทำเป็น dynamic control ค่ะ
ลองหลายวิธีละ ไม่ได้เหมือนกัน แต่ถ้าใช้ gridview >> template coloumn จะทำได้ค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-23 13:41:09 By : สาวเอ๋อ เอ๋อเหรอ เอ๋อมากมาย
 


 

No. 4

Guest


ถ้าใช้ gridview จะประมาณนี้ค่ะ ไม่ได้ลง code ที่มันใช้งานเท่าไหร่นะคะ

dynamic control

Code (ASP)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HtmlGrid.aspx.cs" Inherits="Pages_StandDardControl_Grid_HtmlGrid" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div style="margin: 0 auto">
        <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
        </asp:ToolkitScriptManager>
        <asp:GridView ID="GridViewData" runat="server" AutoGenerateColumns="false" ShowFooter="true" ShowHeader ="true" >
            <Columns>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="80px" Font-Size="10px" />
                    <HeaderTemplate>
                        Order
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="80px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:Label ID="LabelCounter" runat="server"></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="210px" Font-Size="10px" />
                    <HeaderTemplate>
                        Item# <span>
                            <asp:TextBox ID="TextBoxTotalRowAppearence" runat="server" Width="40px">
                            </asp:TextBox></span> <span>
                                <asp:Button ID="Button1" runat="server" Text="Go" /></span>
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="210px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:ComboBox ID="ComboBoxDataItem" runat="server" Width="200px">
                        </asp:ComboBox>
                    </ItemTemplate>
                    <FooterStyle  HorizontalAlign="Center" Width="210px" Font-Size="10px" Font-Bold="true"  />
                    <FooterTemplate>
                        Grand total:
                    </FooterTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <HeaderTemplate>
                        @Price
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:TextBox ID="TextBoxPricePerUnit" runat="server" Width="95%">
                        </asp:TextBox>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <HeaderTemplate>
                        Qty
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:TextBox ID="TextBoxQuantity" runat="server" Width="95%">
                        </asp:TextBox>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <HeaderTemplate>
                        Total
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Center" Width="100px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:Label ID="LabelTotal" runat="server" ForeColor="RoyalBlue" Text="-"></asp:Label>
                    </ItemTemplate>
                    <FooterStyle  HorizontalAlign="Center" Width="100px" Font-Size="10px" Font-Bold="true"  />
                    <FooterTemplate>
                        <asp:Label ID="LabelGrandTotal" runat="server" ForeColor="Blue" Text="-"></asp:Label>
                    </FooterTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <HeaderStyle HorizontalAlign="Center" Width="300px" Font-Size="10px" />
                    <HeaderTemplate>
                        Comment
                    </HeaderTemplate>
                    <ItemStyle HorizontalAlign="Left" Width="300px" Font-Size="10px" />
                    <ItemTemplate>
                        <asp:TextBox ID="TextBoxComment" runat="server" Width="95%">
                        </asp:TextBox>
                    </ItemTemplate>
                </asp:TemplateField>
            </Columns>
        </asp:GridView>
    </div>
    </form>
</body>
</html>


Code (C#)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Pages_StandDardControl_Grid_HtmlGrid : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            InitDataSource(5);
        }
        //LiteralWriteTable(4);
    }

    protected override void OnInit(EventArgs e)
    {

        GridViewData.RowDataBound += new GridViewRowEventHandler(this.RowDataBound);

        base.OnInit(e);
    }

    private void InitDataSource(int varDataRow)
    {
        SimpleData[] DataSource = new SimpleData[varDataRow];
        GridViewData.DataSource = DataSource;
        GridViewData.DataBind();
    }


    private void RowDataBound(object Sender, GridViewRowEventArgs e)
    {
        string[] SimpleList = new string[] { "Earth", "Moon", "Star" };

        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            AjaxControlToolkit.ComboBox myComboBox 
                = e.Row.FindControl("ComboBoxDataItem") as AjaxControlToolkit.ComboBox;
            if (myComboBox != null)
            {
                myComboBox.DataSource = SimpleList;
                myComboBox.DataBind();
            }

            Label lbCounter = e.Row.FindControl("LabelCounter") as Label ;
            if (lbCounter != null)
            {
                lbCounter.Text = (e.Row.RowIndex + 1).ToString("00"); 
            }

        }
    }

    private void LiteralWriteTable(int varTotalRow)
    {
        if (varTotalRow <= 0) return;

        this.WriteLiteralDataLn("<div style=\"background-color : pink ; width : 960px ; height : auto ; margin : 0 auto\">");
        this.WriteLiteralDataLn("   <table cellpadding =\"2\" cellspacing =\"0\" border=\"01\" width=\"960px\"> ");
        this.WriteLiteralDataLn("      <colgroup>");
        this.WriteLiteralDataLn("         <col width=\"80px\"  align=\"center\"");
        this.WriteLiteralDataLn("         <col width=\"250px\" align=\"left\"");
        this.WriteLiteralDataLn("         <col width=\"100px\" align=\"right\"");
        this.WriteLiteralDataLn("         <col width=\"100px\" align=\"right\"");
        this.WriteLiteralDataLn("         <col width=\"120px\" align=\"right\"");
        this.WriteLiteralDataLn("         <col width=\"310px\" align=\"left\"");
        this.WriteLiteralDataLn("      </colgroup>");
        this.WriteLiteralDataLn("      <tbody>");
        for (int myRow = 0; myRow < varTotalRow; myRow++)
        {
            this.WriteLiteralDataLn("         <tr>");
            for (int myColumn = 0; myColumn < 6; myColumn++)
            {
                switch (myColumn)
                {
                    case 0:
                        this.WriteLiteralTableCellData(12, (myRow + 1).ToString("00"));
                        break;
                    case 1:
                        AjaxControlToolkit.DropDownExtender myDDownExtender = new AjaxControlToolkit.DropDownExtender();
                        TextBox myTextBox = new TextBox();
                        this.WriteLiteralTableCellContent(12, myTextBox);
                        myDDownExtender.TargetControlID = myTextBox.ID;
                        this.Form.Controls.Add(myDDownExtender);
                        break;
                    default:
                        this.WriteLiteralTableCellData(12, (myColumn + 1).ToString("00"));
                        break;
                        ;
                }



            }
            this.WriteLiteralDataLn("         </tr>");
        }
        this.WriteLiteralDataLn("      </tbody>");
        this.WriteLiteralDataLn("   </table>");
        this.WriteLiteralDataLn("</div>");
    }
}

public static class EnhanceExtension
{
    public static void WriteLiteralData(this Page Thing, string varData)
    {
        Thing.Form.Controls.Add(new LiteralControl(varData));
    }

    public static void WriteLiteralDataLn(this Page Thing, string varData)
    {
        Thing.Form.Controls.Add(new LiteralControl(varData + "\n"));
    }

    public static void WriteLiteralTableCellData(this Page Thing, string varData)
    {
        Thing.Form.Controls.Add(new LiteralControl("<td>"));
        Thing.Form.Controls.Add(new LiteralControl(varData));
        Thing.Form.Controls.Add(new LiteralControl("</td>\n"));
    }
    public static void WriteLiteralTableCellData(this Page Thing, int varIndent, string varData)
    {
        string indentStr = string.Empty.PadLeft(varIndent);
        Thing.Form.Controls.Add(new LiteralControl(indentStr + "<td>"));
        Thing.Form.Controls.Add(new LiteralControl(varData));
        Thing.Form.Controls.Add(new LiteralControl("</td>\n"));
    }

    public static void WriteLiteralTableCellContent<T>(this Page Thing, int varIndent, T varContent)
        where T : System.Web.UI.WebControls.WebControl
    {
        string indentStr = string.Empty.PadLeft(varIndent);
        Thing.Form.Controls.Add(new LiteralControl(indentStr + "<td>"));
        Thing.Form.Controls.Add(varContent);
        Thing.Form.Controls.Add(new LiteralControl("</td>\n"));
    }
}


public class SimpleData
{
    public string Name { get; set; }
    public double Price { get; set; }

    public SimpleData() { }
    public SimpleData(string varName, double varPrice)
    {
        this.Name = varName; this.Price = varPrice;
    }
}




ตัว LiteralWriteTable มัน error นะคะไม่ต้องไปสนใจมัน
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-23 16:54:53 By : สาวเอ๋อ เอ๋อเหรอ เอ๋อมากมาย
 


 

No. 5



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



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


ถ้าใช้ Gridview คุณก็ทำการ find Control ทีละตัว แล้ว Bindding ที่ละตัวครับ...
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-25 20:24:51 By : koungkung
 


 

No. 6



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

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

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

Go to : (C#) ASP.NET Microsoft Access Add-Insert Multiple Record


Go to : (C#) ASP.NET GridView Control - DropDownList in GridView
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-03-26 07:52:16 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ปัญหาสร้าง combobox หลายอันไม่ได้.............................!?
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 03
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 อัตราราคา คลิกที่นี่