You'll want to listen for the change event on the slider. In the event handler you can do something like this...
collection.filterFunction = filterByPriceRange; collection.refresh(); Then you'll want your filterByPriceRange function to return true if the price of the given object is between the values of slider. The ICollectionView livedocs page should help you set up the filter function. --- In [email protected], "stinasius" <[EMAIL PROTECTED]> wrote: > > hi guys i am tring to filter a datagrid with a price column using a > slider that gets results which are btn two ranges min and max, can > someone please help me. thanks >

