hilla
hilla copied to clipboard
Build better business applications, faster. No more juggling REST endpoints or deciphering GraphQL queries. Hilla seamlessly connects Spring Boot and React to accelerate application development.
If I follow the [Creating an Embedded Vaadin Application Tutorial](https://vaadin.com/docs/v15/flow/embedding-flow-applications/tutorial-webcomponent-exporter.html) in order to embed a server-side Vaadin component into a TypeScript Vaadin view, my application does not work as expected:...
As a developer I would like to use Spring Security in my Fusion app which happens to use exported webcomponents. Do we have integration tests for that? I suspect that...
Original Forum Post: https://vaadin.com/forum/thread/18201160/vaadin-15-how-to-redirect-edge-old-browser-users With Vaadin 15+ the old Edge Browser is no longer supported. When entering, a standard website is shown, which says that the browser is not supported....
TS2739: Type '{ id: any; name: any; }' is missing the following properties from type 'Store': createdBy, createdDate, lastModifiedBy, lastModifiedDate. update: same happends changing them to private.
With Router 1.7.2 `HistoryIT` is currently ignored due to this issue. When state changes, vaadin-router calls the callbacks as registered in `Flow.ts` ``` this.container.onBeforeEnter = (ctx, cmd) => this.flowNavigate(ctx, cmd);...
At some time we should remove unused imports from `Binder` and `FormValidator` among the ts-ignore comment. ``` // @ts-ignore import {Binder, ObjectModel, AnyModel, StringModel, NumberModel, ArrayModel, BooleanModel, PrimitiveModel, Required} from...
On the server side, you can create your view and define the routing info and related metadata for the view on the view itself as ``` @Route("some/route") @PageTitle("my fine page");...
Add tests validating that forward to serverview works with ccdm. If it doesn't work, fix it. Following TODOs are removed from code, but searching by the above and below code...
When adding a splash screen to a V15+ app I want to keep the splash screen visible until the first view is completely loaded. In case if the first view...
After adding a client-side validator that indicates the field should be required (NotEmpty, NotNull etc), e.g., `this.binder.for(firstname).addValidator(new NotEmpty());` The indicator is not shown on page load, but once the field...