I have to export html code

hello
to export to excel or pdf exported file contains html code
how to solve this problem …

(Ex: [Click to configure]
<divclass=‘webix_tree_file’>)

Export functionality doesn’t accept the HTML code ( it will output it as text )
The only exception is the HTML in tree column of treegrid, you need to have “exportAsTree” flag in the column’s configuration.

columns:[
	{ id:"id",	width:50},
	{ id:"value", header:"Film title", width:250,
	  template:"{common.treetable()} #value#", exportAsTree:true },

If your version still doesn’t work for treegrid - grab the latest build
https://s3.amazonaws.com/uploads.hipchat.com/15721/61242/870DLpMChDTRAly/webix_v1.6.0.zip

thanks