VAADIN - Button | implement in HTML Layout-Script

Hello,
is there any oportnunity to use a Vaadin Button in a HTML script?

Id like to use the following button

Button button_login = ew Button(); button_login.setID("buttonlogin"); and this button should be implement in the following script

[code]

<div data-location="buttonlogin"></div>

[/code](Only an idea)

Have so. an idea to bind the button in the html script?

Thank!

I think you should look into CustomLayouts:
https://vaadin.com/docs/v8/framework/layout/layout-customlayout.html

Maybe that can help you achieve what you want?

-Olli