views:

43

answers:

2

is there any way to hide list view Item in ListView ?

+1  A: 

You could override the rendering logic and choose for yourself which items to be ignored (i.e. not to be rendered, but still exist in the item collection).

thelost
A: 

If you want to hide a specific row, you can use a filtered view as ListView's data source such as DataView. By setting filters on it, it will hide specific rows. You can also create custom filtered views.

decyclone
Can you explain more please or show me any source code ?
pedram