I am currently designing a Vaadin application and working on a custom Javascript component, which is a subclass of AbstractJavascriptComponent
. This component uses jQuery to generate a table-like structure.
In certain scenarios, users should be able to input values into specific cells. I would like to utilize Vaadin's standard ComboBox
due to its filtering capabilities for this purpose. However, I am unsure if it is possible to integrate the ComboBox
with a particular DOM element rather than placing it in a traditional layout.
Using Table
or Grid
is not an option as I require direct control over the DOM for complex UI interactions and layout customization. Therefore, creating my own table structure is essential, even though it goes beyond a standard table functionality.