How to add render/template for multicombo list??

How to add render/template for multicombo list??

Hello @webix_B_123,
Multicombo has the property suggest, which gives the possibility to set the template for options:
https://snippet.webix.com/69j4wqd0

Thanks Anna for your reply

Can you check below snippet I want display “<test\>” tags in list
is there any way to encode the data??
https://snippet.webix.com/fuoutbza

@webix_B_123,
You can use special characters & lt; and > to replace the brackets < and >.
Please take a look at the snippet:
https://snippet.webix.com/drivfihe

also it is possible to use webix.template.escape

template: function() {
      	return webix.template.escape('<test>');
      },

Thanks Intregal

How to decode the encode data using webix.template.escape??

@webix_B_123,
Please, check the solution in the following thread.