In Vaadin 14.6.1 Designer, when I create Vertical Layouts (and SplitLayouts) and then ask Vaadin designer to create an object in the java code that I can use to reference that component, instead of creating a "VerticalLayout" object, it simply creates an "Element" class. This "Element" class lacks all the critical methods of the normal "VerticalLayout" or "SplitLayout" class. I tried casting, but that failed. Is there a "right" way to get access to the underlying "correct" java object once I've created my layouts via Designer? I need to be able to a) set properties in code and b) even possibly create methods based on various events (eg the splitter position has changed etc.)
Vaadin designer produces "Element" class in java code for Vertical Layout components
199 Views Asked by Jonathan Sylvester At
2
There are 2 best solutions below
0
szolo
On
Would you be so kind to create an issue in our Designer repository https://github.com/vaadin/designer? Please also attach your project (without dependencies) to it.
I'm not able to reproduce this issue, probably there is something in your project structure.
By the way, are you using Eclipse or IntelliJ IDEA?
Related Questions in VAADIN
- Vaadin ServerRPC Exceptionhandling
- How to display MJPEG-stream in Vaadin (Java)?
- Vaadin - How to have two columns of data (Gridlayout with field and Label data with wrapping text)
- Log4j Logger not logging in some methods
- Building path for Vaadin project
- Vaadin CountdownClock Add On. How to freeze CountdownClock component and/or the appearance of count down tex
- I cannot change the theme for my UI in Vaadin
- Change orientation of rows and columns of Vaadin Grid
- How to change Vaadin 7 layout based on Combobox items selection?
- How to run tomcat7 web app through https over port 8443?
- How manage styles in Vaadin portlet in Liferay
- How to make only some columns editable in a Vaadin Grid?
- Vaadin request filter with filter chain?
- Vaadin is it possible to have different colors for text items in ComboBox
- count items in a column vaadin
Related Questions in VAADIN-FLOW
- Vaadin 14 Grid Component Column containing checkbox does not sort
- Trouble using custom skins within the TinyMCE for flow Vaadin component
- Vaadin 14 production mode and Safari issue
- Vaadin Grid-Pro handling of ESC while editing cell
- How to add attribute lang="en" to label element of an input field?
- Vaadin 23 upgrade issue with generated-flow-imports
- Vaadin 24: TinyMCE for Flow (Team Parttio version) Initial Render Blank
- CSS in embedded Vaadin applications not working
- Vaadin Grid show all item details by default
- Vaadin 23 throws RouteNotFoundException although it exists
- Issue with POST requests on Spring Boot 3/Spring Security 6 Vaadin 24 application
- Vaadin jetty live reload not picking up class changes
- Error launching application after migration from Vaadin 14 to Vaadin 24
- In a DatePicker in Vaadin Flow, how to get the invalid value?
- Vaadin flow exception when using keyboard shortcuts in grid editor
Related Questions in VAADIN14
- Is there a way to stack date and time vertically in Vaadins DateTimePicker component?
- Vaadin 14 production mode and Safari issue
- Vaadin Routing/Navigation
- Change theme from portal to portlet using Vaadin 14 without reloading the portlet
- Spring boot security fails after moving server to new host
- Vaadin 14 build frontend fails due webpack error
- Vaadin 14 LoginPage adds a request to /error but why
- In Vaadin 14 how do I force the scrollbar on a ListBox to move to the top when new items are loaded
- How to embed jasper reports in a vaadin 14 layout(Horizontal or Vertical)?
- How can I increase maximum file upload in Vaadin - Spring Boot
- How can I clean up/remove the content in AppLayout in Vaadin 14?
- Vaadin Flow problem after migrating from Vaadin 8 to 14 - Couldn't find route for 'PUSH'
- How to I get the scrollbar on the VerticalLayout rather than the HorizontalLayout in Vaadin Flow
- Vaadin Maven Multimodule application with vaadin 23
- Vaadin Grid - Attempted to fetch more items from server than allowed in one go
Related Questions in VAADIN-DESIGNER
- InteliJ Vaadin Designer plugin causes infinite "scanning files to index"
- Problem with starting Vaadin Designer in IntelliJ IDEA
- Can you use a vaadin-button in upload?
- Vaadin designer produces "Element" class in java code for Vertical Layout components
- Vaadin Designer Tabs not correctly adding children "tab" to tabs object
- Why get Warning "Unknown tag" in Eclipse for Vaadin Elements
- Radio Button group created using Designer doesn't trigger the changeValueEvent
- Vaadin v22 DateTimePicker component renders twice
- Positioning a component in Vaadin Designer 3?
- Is there a way to define variables for paths inside the HTML code in a typesricpt file?
- Vaadin Designer Attributes and Layers missing in Editor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you have implemented Vertical Layouts (or SplitLayouts), Vaadin designer by default connects Element because it does not know which one to connect. Try to right-click the connection button and it will list all implemented component