Skip to content

Commit

Permalink
fix(demo): fix invalid input parsing error on text field
Browse files Browse the repository at this point in the history
  • Loading branch information
scardanzan authored and javier-godoy committed Aug 29, 2024
1 parent 6e52645 commit a766e46
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,16 @@ public SimpletimerDemo() {
timer.getStyle().set("font-size", "40px");
timer.setStartTime(60);

Span timerTitle = new Span("Simple Count Up Timer");
final Span timerTitle = new Span("Simple Count Up Timer");

final TextField startTime =
new TextField("Start Time", e -> {
time = new BigDecimal(e.getValue());
update();
try {
time = new BigDecimal(e.getValue());
update();
} catch (final Exception ex) {
Notification.show("Please enter a number");
}
});
final Checkbox countUp = new Checkbox("Count Up", false);
countUp.addValueChangeListener(
Expand Down Expand Up @@ -111,7 +115,7 @@ public SimpletimerDemo() {
final HorizontalLayout topLayout = new HorizontalLayout(timerTitle, timer);
topLayout.setAlignItems(Alignment.CENTER);

HorizontalLayout options =
final HorizontalLayout options =
new HorizontalLayout(countUp, fractions, minutes, hours, visible, doubleDigitHours);
options.setAlignItems(Alignment.CENTER);
options.getStyle().set("flex-wrap", "wrap");
Expand Down

0 comments on commit a766e46

Please sign in to comment.