This question is locked. New answers and comments are not allowed.
I have 3 Tabs and three radgrids. When the user clicks "Reset Search", it is suppose to clear the items in the grid and change the visibility of each grid to collapsed.
For the 2 grids on tabs that aren't visible, it is working, but for the active tab, the items don't seem to clear and the visibility doesn't change to collapsed.
I am using Silverlight 3 and the latest build of the code that I know of.
Here is my code:
//clear the coverflow
For the 2 grids on tabs that aren't visible, it is working, but for the active tab, the items don't seem to clear and the visibility doesn't change to collapsed.
I am using Silverlight 3 and the latest build of the code that I know of.
Here is my code:
//clear the coverflow
coverTitles.Visibility =
Visibility.Collapsed;
//clear the film grid...
radgridFilm.Items.Clear();
radgridFilm.Rebind();
radgridFilm.Visibility =
Visibility.Collapsed;
//clear the sound grid...
radgridSound.Items.Clear();
radgridSound.Rebind();
radgridSound.Visibility =
Visibility.Collapsed;
//clear the video grid on the FIRST tab...this Grid is not clearing or changing visibility.
radgridVideo.Items.Clear();
radgridVideo.Rebind();
radgridVideo.Visibility =
Visibility.Collapsed;
Thanks
Mark