Is there an item type for plain text? Using item type=“label” leads to a bold version of the text?
<item type="label" label="Note: BLAH BLAH ..."/>
Also is there a way to change the color of the text?
Manish
Is there an item type for plain text? Using item type=“label” leads to a bold version of the text?
<item type="label" label="Note: BLAH BLAH ..."/>
Also is there a way to change the color of the text?
Manish
If you mean something like on the picture
You need to apply CSS rule in the tag in the head:
div.dhxlist_txt_label {
color: red !important;
font-weight: bold !important;
background: yellow !important;
}