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

i have a GridView with LinqDataSource. im using the following technique to populate a field (Supplier in this case) with dropdownlist, containing values from a different LinqDataSource:

alt text

however, lets say my Supplier field is allowed to be null. any ideas how to allow entering null value, alongside with the other SupplierDataSource options?

link|improve this question

39% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Please try this:

    <asp:DropDownList ID="DropDownList1"
      DataSourceID="SupplierDataSource"
      DataValueField="SupplierID"
      DataTextField="CompanyName"
      SelectedValue='<%#Bind("SupplierID")%>'
      runat="server"
      AppendDataBoundItems="true">
        <asp:ListItem Value="" Text="None" />
    </asp:DropDownList>

This should add an empty list item to your dropdown. I believe your datasource will interpret this as a null value, but I have not tested the code yet.

Hope this helps!

link|improve this answer
This is pretty cool... good for adding a default option like "Unspecified" or whatever – Brian Vander Plaats Sep 7 '10 at 20:27
feedback

Your Answer

 
or
required, but never shown

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