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)
yuriy-fix on fix-hidden-sorting
Update test (compare)
yuriy-fix on fix-hidden-sorting
Apply Serhii's suggestions Co-… (compare)
yuriy-fix on fix-hidden-sorting
Move the test (compare)
yuriy-fix on fix-hidden-sorting
Remove height condition (compare)
yuriy-fix on fix-hidden-sorting
Enhance the fix by making expli… (compare)
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
.
registerStyles()
API? You should: https://github.com/vaadin/vaadin-themable-mixin#styling-in-javascript
registerStyles()
, I wasn’t aware of that! Let’s look at it right now :smile:
vcf-avatar-item
in this Glitch: https://glitch.com/edit/#!/low-buckthorn but I can’t get the name initials to show up. What am I doing wrong?
action
method that does a navigation by setting window.location
to the target URL. Or alternatively use the Router.setTriggers
API and use a customized version of the click trigger (where I think you could do the navigation via window.location
based on some attribute being present on the clicked <a>
element, or based on href
path or some other condition) instead of the default one.