We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Applying filter on GridDataBoundGrid

I am running the following code to apply a filter to a GDBG grid, but the grid does not update to show the filtered rows. The filter is not applied. Can you tell me what else I have to do? this.grid.BeginUpdate(); DataView dv = ((DataSet)grid.DataSource).Tables[grid.DataMember].DefaultView; dv.RowFilter = "[col1] = 20.000"; this.grid.EndUpdate(true); Also, if a user only highlights a portion of the text in the cell, how do I access the highlighted portion? Thanks.

2 Replies

AD Administrator Syncfusion Team August 12, 2005 04:20 PM UTC

You just cannot filter any DataView, you must filter the one being used by the CurrencyManager associated with the grid and the datasource. Additionally, after the grid.EndUpdate call, you may need a grid.refresh call. To get the dataview, try this code: CurrencyManager cm = grid.BindingContext[grid.DataSource, grid.DataMember] as CurrencyManager; DataView dv = cm.List as DataView; To get the selected text in an actively editing textbox cell, you can use code like: GridTextBoxCellRenderer cr = grid.CurrentCell.Renderer as GridTextBoxCellRenderer; string s = cr.TextBox.SelectedText;


KP Keyur Patel August 12, 2005 05:08 PM UTC

It worked. Thank you very much.

Loader.
Live Chat Icon For mobile
Up arrow icon