Currently I am setting the height of the rows in SlickGrid trough options programatically:
var options = {
rowHeight: 30
};
Is there any way I could do it trough CSS rule without modifying slick-grid default implementation?
I am asking this becaous I wan't to set row height based on CSS Media Queries.
My initial idea was to read CSS property programatically (something like this) and set readen value like that:
var options = {
rowHeight: readRowHeightCSSValue()
};
...but I am not sure whether this is best idea.