Gordan Krešić
Gordan Krešić
If `MaterialNavBar` contains `MaterialNavBrand` with sufficiently long content, brand will overlap both hamburger icon on the left and any content on the right of navbar. Issue is reproducible even in...
Feature request. For toasts with unlimited duration (lifeMillis < 0), we have to call `.close()` at some point so we need reference to opened toast. Now, we have to create...
Looking at [ProgressMixin](https://github.com/GwtMaterialDesign/gwt-material/blob/master/gwt-material/src/main/java/gwt/material/design/client/base/mixin/ProgressMixin.java)'s generics declaration it's supposed to work with any `UIObject` that implements `HasProgress` interface. However, [`ProgressMixin.showProgress`](https://github.com/GwtMaterialDesign/gwt-material/blob/master/gwt-material/src/main/java/gwt/material/design/client/base/mixin/ProgressMixin.java#L44) supports only instances of `MaterialCollapsibleItem` and `MaterialNavBar`. Is there any specific reason...
Steps to reproduce: 1. Create and attach `MaterialDatePicker` 1. Set value using `setValue` to 1. Change value using picker to 1. Read value using `getValue` and is correctly returned 1....
`MaterialCollapsible` overrides `MaterialWidget.add()` where it initializes `MaterialCollapsibleItem`'s parent using `MaterialCollapsibleItem.setParent(MaterialCollapsible)`. However, if items are added to collapsible using `MaterialCollapsible.insert(Widget, int)` (instead of `add()`), child's parent is not initialized. Instead of...
If `MaterialCollapsibleItem` is expanded via mouse click, its "active" flag is not set, so: - `MaterialCollapsible.getActive()` returns null - `MaterialCollapsibleItem.isActive()` returns false One possible workaround is to check for existence...
Imagine a class whose getters in some cases throw specific exception. JSON serialization should respond to these exceptions by not serializing given field. On server, I solved this using `com.fasterxml.jackson.databind.ser.PropertyFilter`,...
Last week we've encountered a HTML page that has **a lot** of `\` and `'` dropped in it. Previous version of the same page didn't have that garbage. See [attached...
### Use case It would be great if jOOQ's `org.jooq.impl.EnumConverter` could be used/configured for converting columns representing arrays of enum UDTs. Currently, I'm using `forcedType` declarations for converting columns of...
It seems related to Jetty and Tomcat implementations. Will provide PR with test cases.