Hi
I want to format a column without conditions.
for example, make the ‘title’ column bold or a larger font size:
I tried this and nothing happened.
$f = array();
$f[“column”] = “program_title”;
$f[“cellcss”] = “‘font-weight’:’bold'”;
$f_conditions[] = $f;
possible?
Thanks.
2 Answers
You need to use JS based convention (fontWeight).
$f["css"] = "'color':'green','fontWeight':'bold'";
is there a way to reference a css class? Like
$f[“cssclass”] = “grid-column-title”;
Thanks.
Currently it’s not supported.
I’ve implemented this change and sending you latest build. You can use following with it.
$f["class"] = "grid-column-title";
Your Answer