public class Toast extends Object
show(String) will not encode the strings passed into them,
thus the formatting of messages at 'client-side' is allowed.
User input should be escaped carefully.
| Constructor and Description |
|---|
Toast() |
| Modifier and Type | Method and Description |
|---|---|
static void |
show(String msg)
Display a five-second toast notification message at the top-center of the browser window.
|
static void |
show(String msg,
String type,
String position)
Display a five-second toast notification message.
|
static void |
show(String msg,
String type,
String position,
int duration,
boolean closable)
Display a toast notification message.
|
public static void show(String msg, String type, String position, int duration, boolean closable)
msg - the message to show (HTML is accepted)type - available types are "info", "warning", "error". default "info".position - predefined positions. Available options
| left | center | right | |
|---|---|---|---|
| top | top_left | top_center | top_right |
| middle | middle_left | middle_center | middle_right |
| bottom | bottom_left | bottom_center | bottom_right |
duration - the duration of notification in millisecond. If zero or
negative the notification does not dismiss until user left-clicks outside
of the notification box.closable - whether to close notification manually or not. If true there will be a
close button on notification message and won't close until user click the button
or duration time up, default false.public static void show(String msg, String type, String position)
msg - the message to show (HTML is accepted)type - available types are "info", "warning", "error". default "info".position - predefined positions. Available options
see show(String, String, String, int, boolean).
default "top_center".public static void show(String msg)
msg - the message to show (HTML is accepted)Copyright © 2026. All rights reserved.