crudui icon indicating copy to clipboard operation
crudui copied to clipboard

Automatically generate CRUD-like Vaadin views for any Java Bean

Results 30 crudui issues
Sort by recently updated
recently updated
newest added

I found that if you use an implementation of LazyFindAllCrudOperationListener on a TreeGridCrud, then refreshGrid() calls to getGrid().setItems(dataProvider) who calls to deprecated getGenericDataView() in TreeGrid generating an exception throw new...

It is common to write code in English even if the user interface is intended to run in a different language. So this result that CrudUI has english labels in...

setColumns & setVisibleProperties calls now become more like optional configuration than must have. Removes a ton of nasty looking non-type configuration code. BTW. Now that property order is "correct", in...

This could be achieved by e.g. using FormBinder (from in.virit:viritin) instead of the Binder in Vaadin core. One would also get proper crossfield validation (aka class level validatorsupport). Haven't yet...

enhancement

It should be possible to use own bindings if a "property key" doesn't exist in the domain model. A first try you find in the pull request: #128

With the added functions it is possible to define your own ValueProvider (getter) and a setter for a property. This allows you to add a form field with your own...

### Description When attempting to bind a `Double` type field from a POJO to a `NumberField` Vaadin Flow component in GridCrud using `myGrid.getCrudFormFactory().setFieldType("temperature", NumberField.class);`, a `BindingException` is thrown. ### Steps...

GridCrud crud = new GridCrud(Camera.class); final CrudFormFactory crudFormFactory = crud.getCrudFormFactory(); crudFormFactory.setFieldType("port", IntegerField.class); Camera.class : public Integer getPort() { return port; } com.vaadin.flow.data.binder.BindingException: An exception has been thrown inside binding logic...

When you have an JPA entity with a unique constraint and type in an already in use value, the whole form closes before an error pop up is shown. This...

bug
help wanted