Drop down box in Windows header and statusbar

I have a Grid and Status bar attached with window. I need to show drop down box on window title-bar and three lines and drop down on status bar. Attached is screenshot which I want to achieve.

I can get one line working on status bar but not three line. I tried following code but did not work
w1.attachStatusBar({
text: “

Showing 20 rows
Filter Applied: NA Download data for: N/A
”,
height: 20
});

Can i have sample code attaching custom HTML object to Window header and status bar, please?


Hi

To have a 3 lines in a status bar, define line-height styling for your content, something like next

snippet.dhtmlx.com/6cecf7146

Can i have sample code attaching custom HTML object to Window header

You can try to use setText api of window component. It allows to add a custom HTML content to the header of a window.

snippet.dhtmlx.com/6ca029298