public class Toast
extends java.lang.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(java.lang.String msg)
Display a five-second toast notification message at the top-center of the browser window.
|
static void |
show(java.lang.String msg,
java.lang.String type,
java.lang.String position)
Display a five-second toast notification message.
|
static void |
show(java.lang.String msg,
java.lang.String type,
java.lang.String position,
int duration,
boolean closable)
Display a toast notification message.
|
public static void show(java.lang.String msg,
java.lang.String type,
java.lang.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(java.lang.String msg,
java.lang.String type,
java.lang.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(java.lang.String msg)
msg - the message to show (HTML is accepted)Copyright © 2005-2024 Potix Corporation. All Rights Reserved.