Custom Filter title

I would like to know how to add a title to a header content filter?

See https://snippet.webix.com/5432d74d.

In this example how does one add a title to the right of the threeStateCompare (in the same cell) such as “Hide/Show rows”?

Secondly, how would I be able to vertically align the threeStateCompare component?

Any help will be appreciated.

Hello,

add a title to the right of the threeStateCompare (in the same cell) such as “Hide/Show rows”?

render:function(master, column){
    var html = "<input type='checkbox' id='cb1'>" + "Hide/Show rows";
...

Sample: https://snippet.webix.com/c9cjsqke

how would I be able to vertically align the threeStateCompare component?

You can use CSS properties such as padding, margin, line-height or transform

Hi Nastja,

Excellent! Appreciate your prompt response.