Vaadin has a high quality component set for building mobile and desktop web applications in modern browsers
yuriy-fix on fix-hidden-sorting
yuriy-fix on master
fix: make explicit data request… (compare)
extends TextFieldElement
, then the field appears again :open_mouth:
vaadin-custom-field
I’ve just noticed.
label-suffix
). I’m using the technique of template-injection I’ve seen in the Vaadin’s text-field elements, but I guess I’m missing something: when importing the custom element, original elements break.
TextFieldElement
: the styles get lost in the original field.
src/vaadin-text-field.js
before the styles, styles don’t get applied!
MemoryBuffer buffer = new MemoryBuffer();
Upload upload = new Upload(buffer);
upload.addSucceededListener(e -> {
SecurityContext context = SecurityContextHolder.getContext();
context.getAuthentication(); // null
});
<vaadin-text-field>
would be import '@vaadin/vaadin-text-field/theme/material/vaadin-text-field.js';
. Note that you shouldn't mix Lumo and Material themed Vaadin components on the same page.
material-color-light
instead of material-light-color
.
DataSeriesItem3d point = new DataSeriesItem3d(x, y, z);
if (x > y && x > z) {
higherX.add(point);
} else if (y > x && y > z) {
higherY.add(point);
} else {
higherZ.add(point);
}
}
}
id
.