DataView??

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

Hi all
I bound a datagrid to a DataTable.
I want to filter some rows of this table without using of DataView or
DefualtView..
Is it possible to do that??
 
Hi,
The other way around is to filter the rows in the select query itself.

Regards,
Angrez
 
if u bind a table to grid directly (not a view of it), behind the scenes,
its default view will be bound. so, if you want to apply a filter without
using view object, you can manually remove all rows u dont want, and bind it
to grid. but why dont u use view object?
 
because I used 2 tables one master and another details..
when user want to filter the master with it's Code,I want to show him just
that row ..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top