<style type="text/css" class="cssStyles">
.e-grid .e-altrow {
background-color: #f2f2f2;
}
</style>
<SfGrid @ref="_imageTable" DataSource="_allImages" AllowSorting="true" AllowFiltering="true" EnableAltRow="true">
..
</SfGrid>
That code works but as soon as I move the <style> tag into a css file instead like below, it stops working?
.e-grid .e-altrow {
background-color: #f2f2f2; }