htmlEnable
Optional. Specifies the HTML content (inner HTML) of TreeGrid columns
htmlEnable?: boolean;
Example
const treegrid = new dhx.TreeGrid("treegrid_container", {
columns: [
// columns config
],
data: dataset,
htmlEnable: true
});
Related sample: TreeGrid. HTML in data
If you set the property to false, the content of TreeGrid columns will be displayed as a string value.
Change log:
added in v6.3