Datatable combo editor list tooltip

Hi,

I need tooltip to list of combo editor of datatable. How can I achieve this?

You can define custom suggest configuration for the column

https://snippet.webix.com/r2ij8ilm

    { view:"datatable", editable:true, columns:[{
      id:"year", editor:"combo", suggest:{
        body:{
          tooltip:"#value# some",
          data:["1994", "1972"]
        }
      } 
    }], data:grid_data }

thank You so much! Its working