I have a Silverlight PivotViewer up and running, with about 4000 items.

I pass querystring parameters to the page that hosts the PivotViewer, to filter the items upon opening.

How do you add filters to the PivotViewer programmatically?

I've tried :

pvtTest.AppliedFilters.Add(new KeyValuePair<string, IList<string>>("Color", new List<string> { "EQ.Green", "EQ.Red" }));

but it still displays all the items. I've also tried checking what the value of the AppliedFilters property is after I set some filters using the UI, but it still only contains the filter that I added above.

link|improve this question

Found it... You can specify filters by using the ViewerState property. It has a specific syntax, which can be seen here : silverlight.net/content/pivotviewer/developer-info/api/html/… – grimstoner Sep 9 '11 at 7:16
feedback

1 Answer

up vote 1 down vote accepted

You can specify filters by using the ViewerState property.

It has a very specific syntax, which can be found here : http://www.silverlight.net/content/pivotviewer/developer-info/api/html/P_System_Windows_Pivot_PivotViewer_ViewerState.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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