Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Filter on Multiple Fields
posted

Hello.  I am using the XamDataGrid and have implemented record filtering.  When you create a new RecordFIlter, it seems that it is only possible to filter on one field at a time:

// Create a new RecordFilter for 'Country' field.
RecordFilter filter = new
RecordFilter( );
filter.FieldName =
"Country";

How about if I want to filter using multiple fields?  Is this possible?  Thanks!