vote up 2 vote down star
1

Is there some elegant way to add an empty option to a DropDownList bound with a LinqDataSource?

flag

75% accept rate

2 Answers

vote up 3 vote down check

Here's how to add a value at the top of the list. It can be an empty string, or some text.

<asp:DropDownList ID="categories" runat="server" AppendDataBoundItems="True" AutoPostBack="True" DataSourceID="categoriesDataSource" DataTextField="CategoryName" DataValueField="CategoryID" EnableViewState="False">
    <asp:ListItem Value="-1">
       -- Choose a Category --
    </asp:ListItem>           
</asp:DropDownList>

Be sure to set the DropDownList's AppendDataBoundItems=True.

link|flag
Why don't you add that suggestion to your sample code for clarity? – Keltex Nov 10 '08 at 16:21
Thanks for the suggestion, Keltex. I thought my original version emphasized the point that the attribute had to be changed, but obviously it didn't. – DOK Nov 10 '08 at 16:24
As it turns out, just setting AppendDataBoundItems to true adds an empty option to the beginning. Like if it was there by default or what. If I add an asp:ListItem, I'll get 2 empty options. Anyway, your solution is cool, thank you. – cruster Nov 10 '08 at 16:36
Thanks for the info, custer. I didn't know that. – DOK Nov 10 '08 at 17:02
vote up 0 vote down

I'd provide an extension method on IEnumerable<string> that prepended an item to the beginning of the list:

	public static IEnumerable<string> Prepend(this IEnumerable<string> data, string item)
	{
		return new string[] { item == null ? string.Empty : item }.Union(data);
	}

Its sort of linq-y, as it uses the linq extension method Union. Its a little cleaner than doing this:

var result = new string[]{string.Empty}.Union(from x in data select x.ToString());
link|flag

Your Answer

Get an OpenID
or

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