abdullahtellioglu
abdullahtellioglu
React `useState` uses references to an object, but as you stated, Signal uses value instead, but it does not update the complex object signal under the hood. You need to...
I think it is a bug related to React router Here is `LoginView.java`. ```java @AnonymousAllowed @PageTitle("Login") @Route(value = "login") public class LoginView extends LoginOverlay implements BeforeEnterObserver { private final AuthenticationContext...
Debugging gets easier as you know which methods to track when looking for why the number is decreased. It would make api symmetrical. It is the first method that you...
I am not saying that incrementBy should reject negative values, but rather there should be a decrementBy API that can even call the incrementBy method with a negated delta value....
FYI, there is a conversation in [slack](https://vaadin.slack.com/archives/C3TGRP4HY/p1705930727525509) about this topic from January. Implementing what Tomi suggested(adding height:100% along with removing all-rows-visible) does not work for grids that have many rows...
In the example below, grid has 800 px height and max-height but the exception still happens. https://github.com/user-attachments/assets/8c0f7521-5c81-4ba8-a98c-42af64d914e5 The grid has less than 100 rows in total.
You can reproduce it with the following styles ```css vaadin-grid { --vaadin-grid-cell-padding: 0 0; max-height: 1000px; } vaadin-grid::part(cell) { min-height: auto; } ```
I failed to create a unit test as mimicking the real application in a unit test is not easy because the example contains multiple interfaces, functional interfaces and different classes....
In the example, ReflectionTypeSolver gets false, which should resolve ALL_CLASSES, am I right? Also, I updated the code by adding ```java String classPath = System.getProperty("java.class.path"); for (String entry : classPath.split(File.pathSeparator))...
LoginView does not have `@Layout` annotation in the example. Additionally, I would expect autoLayout feature to be disabled by default if not explicitly set true for view marked as Login...