up vote 1 down vote favorite
share [g+] share [fb]

I am using a Gridview to display some data. In EditItemTemplate of gridview I am using DropDownList for one of the column of gridview. DataSource of gridview is a table "UserEntries". And Datasource of Dropdown is another table "TypeEntries". Columns of TypeEntries are - Guid and TypeName. Guid is DataValueField of dropdown and TypeName is DataTextField. I am storing DataValueFiels of dropdown in UserEntries table.

Now when user clicks Edit button of gridview, how to populate dropdown with "TypeEntries" table? I am using

    Dropdownlist tempddl = new Dropdownlist();
    tempddl = (Dropdownlist)gvUserData.FindControl("ddlTypeListInGrid");
    tempddl.DataSource = _section.GetTypeEntries();
    tempddl.DataBind();

but it is not working. Can anyone tell me any other way to do this task? Thanks in advance.

link|improve this question

37% accept rate
What is "not working"? It throws some exception or what? – TcKs Jan 16 '09 at 11:37
You are first creating a Dropdownlist and then setting it to another control, you should do either one of them. – Recep Jan 16 '09 at 11:43
It is throwing exception "Object reference not set to an instance of an object." – Devashri Jan 16 '09 at 12:03
Dropdown fron gridview's EditItemTemplate can not be accessed.Is there any other way to acces it? – Devashri Jan 16 '09 at 12:06
feedback

5 Answers

If you get "Object reference not set to an instance of an object." in exception, it means the "ddlTypeListInGrid" control was not found. So you can not cast NULL ( NOTHING ) to target type.

You propably do this code in wrogn page's life cycle. Try it in one of later oage events (Load, LoadComplete, etc..) or check, if the container realy contains control with ID "ddlTypeListInGrid".

link|improve this answer
Is there any other way to do it rather than converting dropdown control itself into dropdown?? – Devashri Jan 16 '09 at 12:28
The problem is not converting, but the control named "ddlTypeListInGrid" was not found. So you have nothing to convert. Set breakpoint to the line "gvUserData" and look which controls is in it. – TcKs Jan 16 '09 at 12:35
feedback

C# is case sensitive, you should use DropDownList instead.

link|improve this answer
I used DropDownList now.. Stil it not working. It is giving error "Object reference not set to an instance of an object." – Devashri Jan 16 '09 at 11:45
feedback

Are you looking for Convert.ChangeType, I would have to see more code to get at your problem.

link|improve this answer
feedback

I am uploading whole code of function.

protected void gvUserData_OnRowEditing(object sender, GridViewEditEventArgs  e)
{
    gvUserData.EditIndex = e.NewEditIndex;

    gvUserData.DataSource = _section.GetUserEntries();
    gvUserData.DataBind();

    DropDownList tempddl = new DropDownList();       //I am not sure whether this is correct or not..        
    tempddl = (DropDownList)gvUserData.FindControl("ddlTypeListInGrid");
    tempddl.DataSource = _section.GetTypeEntries();
    tempddl.DataBind();        

}
link|improve this answer
feedback

As a side note ( not related with your problem, just for your information ) the folowing line :

 DropDownList tempddl = new DropDownList();

Could be :

 DropDownList tempddl;

You dont need to create a new instance of DropDownList since at the next line, your tryng to find an instance nammed "ddlTypeListInGrid". Then, as Tcks said, if the ddlTypeListInGrid control does not exist, then you will likely get a NullReferenceException.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.