Assuming you're using a collection as the dataProvider for your DataGrid, you can do this easily with the filterFunction property of the collection. Look at the docs and you'll see that filterFunction should refer to a function that accepts a single param of type Object and returns true or false. Create a property that your filterFunction uses to determine the return value and then just change the value of that property in the change handler of the ComboBox.
HTH, Ben --- In [email protected], "loisgh1961" <[EMAIL PROTECTED]> wrote: > > Hi There, > > I've managed to put a ComboBox in the Header of my DataGrid. How can > I use the comboBox to create a filter on the DataGrid column? >

