I have a public property witch looks like this
Where i receive what the user has selected in the RadComboBox.
Now I want to filter my gird by this selected value how can I do this ?
On the gird page I prepared method like this witch is triggered when the user clicks on a button (apply filter)
I thought that I have to do something like this ?Thanks for help and fast answer !
public string SelectedCountry{get { return this.cmbCountry.SelectedValue; }}Now I want to filter my gird by this selected value how can I do this ?
On the gird page I prepared method like this witch is triggered when the user clicks on a button (apply filter)
protected void Af_FilterButtonClicked(object sender, EventArgs args){ jobFilter.SelectedCountry.Where() //jobFilter is my custom control }I thought that I have to do something like this ?Thanks for help and fast answer !