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
2010-08-03 08:26:53
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
2010-08-03 08:29:51
Can you explain more please or show me any source code ?
pedram
2010-08-04 14:07:14