如何将ComboBox添加到asp.net未绑定的GridView

时间:2010-09-10 11:15:26

标签: c# asp.net

我想知道如何在运行时通过代码向未绑定的GridView 添加ComboBox列。

1 个答案:

答案 0 :(得分:0)

<强>编程:

我在过去使用了以下类(但是对于DropDown和CheckBox绑定)实现了ITemplate。

public class AddTemplateToGridView : ITemplate
{
    String columnName;

    public AddTemplateToGridView(String colname)
    {
        columnName = colname;
    }

    void ITemplate.InstantiateIn(System.Web.UI.Control container)
    {
        if (columnName == "yourField")
        {
            ComboBox cb = new ComboBox();
            cb.DataBinding += new EventHandler(cb_DataBinding);
            container.Controls.Add(cb);
        }
    }

    void cb_DataBinding(object sender, EventArgs e)
    {
        ComboBox cb = (ComboBox)sender;
        GridViewRow container = (GridViewRow)cb.NamingContainer; 
        Object dataValue = DataBinder.Eval(container.DataItem, columnName); 
        if (dataValue != DBNull.Value) 
        {
            // Assign ComboBox vals if necessary
            ... = dataValue
        }
    }
}

通过在代码隐藏中声明GridView和TemplateField来使用:

GridView newGrid = new GridView();
TemplateField field = new TemplateField();
field.HeaderText = "columnName";
field.ItemTemplate = // some item template
field.EditItemTemplate = new AddTemplateToGridView("yourField");
newGrid.Columns.Add(field);

声明:

<asp:GridView ID="GridView1" runat="server">  
<Columns>              
    <asp:TemplateField HeaderText="yourField">
        <ItemTemplate>
            <asp:Label runat="server" Text ='<%# Eval("yourField") %>' />
        </ItemTemplate>
        <EditItemTemplate>         
            <%--Your ComboBox--%>
        </EditItemTemplate>  
    </asp:TemplateField>
</Columns>
</asp:GridView>

希望这有帮助。