Folks using UI for ASP.NET AJAX Q1 2014 with VS 2012.
I am using below link as Prototype (The Top Grid).
http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultcs.aspx
I would like to Filter the RadGrid Based on Null Value of the City Combobox as Well as All or Selected Value. I modified the Screen (See attached).
Below is my new Datasource for that ComboBox (i.e RadComboBoxCity) that already has some Null City Values.
Also there are Some Null City Values in Customer Table.
Any Help is appreciated. Thanks
gc_0620
I am using below link as Prototype (The Top Grid).
http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultcs.aspx
I would like to Filter the RadGrid Based on Null Value of the City Combobox as Well as All or Selected Value. I modified the Screen (See attached).
Below is my new Datasource for that ComboBox (i.e RadComboBoxCity) that already has some Null City Values.
<asp:SqlDataSource ID=
"SqlDataSource3"
ConnectionString=
"<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand=
"SELECT DISTINCT City FROM CustCity"
runat=
"server"
></asp:SqlDataSource>
Also there are Some Null City Values in Customer Table.
<asp:SqlDataSource ID=
"SqlDataSource1"
ConnectionString=
"<%$ ConnectionStrings:NorthwindConnectionString %>"
ProviderName=
"System.Data.SqlClient"
SelectCommand=
"SELECT CustomerID, ContactName, ContactTitle, City, Country, Bool FROM Customers"
runat=
"server"
></asp:SqlDataSource>
Any Help is appreciated. Thanks
gc_0620