DevonDahon
DevonDahon

Reputation: 8350

Can I hide a grid row without applying styles to each row element?

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

Answers (1)

hisbvdis
hisbvdis

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

Related Questions