Hi All,
How can i make a null item to represent null values for a combobox in a formview?
in a details view it might look like this:
Can i add an empty list item in a similar way in design view for combobox? also.. is there a convertEmptyStringToNull equivalent in formsview (i know not telerik related..) thanks.
How can i make a null item to represent null values for a combobox in a formview?
in a details view it might look like this:
<
asp:TemplateField ConvertEmptyStringToNull="true" HeaderText="Currency"
SortExpression="currencyID">
<EditItemTemplate>
<asp:DropDownList ID="DdlCurrencyEdit" runat="server"
AppendDataBoundItems="true" DataSourceID="SqlDSCurrencies"
DataTextField="currencyName" DataValueField="currencyID"
SelectedValue='<%# Bind("currencyID") %>'>
<asp:ListItem Value="">(none)</asp:ListItem>
</asp:DropDownList>
</EditItemTemplate>
Can i add an empty list item in a similar way in design view for combobox? also.. is there a convertEmptyStringToNull equivalent in formsview (i know not telerik related..) thanks.