Reputation: 8350
I'm trying to hide a row in a grid. I could do it by setting the display
property for each cell in the row, but it doesn't seem very optimal. Is there a way to apply a style that targets an entire grid row as I've created it?
Upvotes: 1
Views: 78
Reputation: 1380
A grid is just a layout scheme. With it, you cannot control the visibility of elements. If you want to hide an element, you need to do this through display property.
Upvotes: 1