Questions tagged [vaadin11]

Use this tag for version specific questions about Vaadin 11 - the open-source platform for web application development. When using this tag also include the more generic [vaadin] tag where possible.

5 questions
0
votes
1 answer

Vaadin 13 Pie Chart is not replacing demo data (web browsers) with my data DataSeriesItem ("Mercury", 4900));

I do not want to have the demo data (web browser) in the pie chart. I want to overwrite this. But it does not care. It shows no errors but always displays only web browser data. Not mine: "Mercury", 4900 "Venus", 12100 public…
SL5net
  • 2,282
  • 4
  • 28
  • 44
0
votes
0 answers

Vaadin 11: selecting a not present value

A question concerning Vaadin 11 Grid based on this starter app, a list of imaginary products. public SampleCrudView() { setSizeFull(); HorizontalLayout topLayout = createTopBar(); grid = new ProductGrid(); …
m_OO_m
  • 55
  • 7
0
votes
1 answer

Vaadin 11: refreshAll (again)

here is a good thread about DataProvider.refreshAll() on Vaadin 8.5.1, but it doesn't seem to work this way in Vaadin 11. I used this starter app to play around. It displays some imaginary product data in a grid. At first, I added a refresh command…
m_OO_m
  • 55
  • 7
0
votes
1 answer

Vaadin flow - Grid column empty

Vaadin 11.0.1 Layout is one top grid and to bottom grid (one on left, one on right) Here is how I create my page: public class InformationMainView extends VerticalLayout { private Grid gridRejet = new Grid<>(); private…
Tyvain
  • 2,640
  • 6
  • 36
  • 70
0
votes
1 answer

Converting DatePicker to java.util.Date

I have a DatePicker in Vaadin 11 i'm trying to bind to Date field. Seemed like something like this would work: getBinder().forField(datePicker) .withConverter(new LocalDateTimeToDateConverter(ZoneId.systemDefault())) …
javydreamercsw
  • 5,363
  • 13
  • 61
  • 106