Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7083965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:14:36+00:00 2026-05-28T07:14:36+00:00

I have a DataGrid bound to a DataView which, among other columns has, an

  • 0

I have a DataGrid bound to a DataView which, among other columns has, an ID Column and ParentID Column, I need the user to be able to specify a ParentID using using a DropDownList (ComboBox).

Now, I have already added the DropDownList to the DataGrid like this:

<Columns>
    [...]
    <asp:TemplateColumn HeaderText="Parent" >
        <ItemTemplate>
            <asp:DropDownList ID="ddlParentID" 
                              runat="server" 
                              DataValueField="ID"
                              DataTextField="Short_Description"
                              Width="100%"
                              DataSource="<%# dsDV %> ">
            </asp:DropDownList>
        </ItemTemplate>
    </asp:TemplateColumn>
</Columns>

In the code-behind I have the following a method:

Protected dsDV As New DataView
Protected Sub PopulateDropDownList()
    Dim conn As SqlClient.SqlConnection = New SqlClient.SqlConnection(myConnString)
    Dim comm As SqlClient.SqlCommand = New SqlClient.SqlCommand("SELECT * FROM myTable", conn)
    comm.CommandType = CommandType.Text
    Dim myTableTable As New DataTable
    conn.Open()

    myTableTable.Load(comm.ExecuteReader)
    Me.dsDV = myTableTable.DefaultView
End Sub

That PopulateDropDownMethod is called on the form Load Event but, albeit DDLs do show, they show empty, as if no DataBinding is being made.

How can I properly bind the DDL with a dataSource in the codebehind? Or, if that’s not the issue, how do I properly fill the DDL?

Update 1

After the first answer I went ahead and tried this (still no luck):

Protected Sub dg_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dgData.ItemDataBound
    If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then
        Dim ddl As DropDownList = CType(e.Item.Cells(3).FindControl("ddlParentID"), DropDownList)
        Me.PopulateDropDownList(ddl)
    End If
End Sub

Protected dsDV As New DataView
Protected Sub PopulateDropDownList(ddl As DropDownList)
    Dim conn As SqlClient.SqlConnection = New SqlClient.SqlConnection(myConnString)
    Dim comm As SqlClient.SqlCommand = New SqlClient.SqlCommand("SELECT * FROM myTable", conn)
    comm.CommandType = CommandType.Text
    Dim myTableTable As New DataTable
    conn.Open()

    myTableTable.Load(comm.ExecuteReader)
    ddl.DataSource = myTableTable.DefaultView
    ddl.DataBind()
End Sub

Note that I also removed the call to PopulateDropDownList from the Form Load Event handler.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T07:14:37+00:00Added an answer on May 28, 2026 at 7:14 am

    I don’t why but taking the binding code from the aspx to the aspx.vb fixed the issue, so it all looks like this now:

    <asp:TemplateColumn HeaderText="Parent" >
        <ItemTemplate>
            <asp:DropDownList ID="ddlParentID" runat="server" Width="100%" >
            </asp:DropDownList>
        </ItemTemplate>
    </asp:TemplateColumn>
    

    And for the code-behind, for each row:

    Dim ddl As DropDownList = CType(e.Item.Cells(3).FindControl("ddlParentID"), DropDownList)
    ddl.DataValueField = "ID"
    ddl.DataTextField = "Short_Description"
    ddl.DataSource = myTable.DefaultView
    ddl.DataBind()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DataGrid , which is bound to a DataTable object. The user
I have a datagrid which is bound to a database table. I need to
I have a DataGrid which is being bound dynamically to a database query. The
I have a problem with a data-bound DataGrid control, in that despite each column
Scenario I have a DevExpress DataGrid which is bound to a DataSet in C#.
I have a DataGrid where each column has a SortExpression. I would like the
I have a datagrid that is bound to a observableCollection of Employees The user
I have Datagrid which is bound to my Database <WpfToolkit:DataGrid Name=DataGrid1 Grid.Row=1 ItemsSource={Binding Path=MainSearchBinding}
I have a bound DataGrid and various other controls(external to the datagrid) that show
I have a DataGrid which is bound to a PagedCollectionView and the underlying collection

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.