Select Filter HTML Question

Hello,
is possible to populate a select filter with html field? for example in this snippet
https://snippet.webix.com/b8ckaly8

in the select filter if i want an image before the text? is possibile with <img src="">? i try with a <b> but is not html.

thank you.

Hello,

I’m afraid not. This filter is based on HTML < select > tag control and it’s not as customizable as needed.
Only richSelectFilter, multiSelectFilter, multiComboFilter and datepickerFilter filters (pro-version) have the property ‘suggest’, which gives the possibility to set the template for options:

columns:[
      ... ,
      { 
        id:"year",	 
        header:[
          "Released",
          {
            content:"richSelectFilter", 
            suggest:{
              body:{
                template: '#value# <span class="webix_icon fa-check-circle"></span>'
              }
            }
          }
        ...
    ],

Please check the sample:
https://snippet.webix.com/7xlvvv34