Hi,
Is it possible to do this with dhtmlxgrid?
Example:
there are few ways to set styles of row
first column data
second column data same for cell
loading from json?
Hi,
Is it possible to do this with dhtmlxgrid?
Example:
there are few ways to set styles of row
first column data
second column data same for cell
loading from json?
Try to use something similar:
{rows: [{
id: 1002, style:"color:red",
data: ["1000", "Blood and Smoke",
{
"value": "Stephen King",
"type": "txt",
"style":"color:blue",
}, ]
}]
}
Does this feature work under standard license? Or only PRO?
Unfortunately such feature is available in PRO version only.
Hello.
Got a question.
What if I need to style few elements at the same time like:
“text-decoration:underline”
“font-weight:bold”
“color:blue”
???
if I write “style”:“color:blue”, “style”:“text-decoration:underline”, “style”:“color:blue”
it is not working!??
Thanks
Please, try to use:
“style”:“color:blue; text-decoration:underline; color:blue;”
Solved
Need to write “style”:“color:blue; text-decoration:underline; color:blue”
Now it is working!
Sematik, thank you very much!