Web Component: j-Snackbar
j-SnackBar
singleton
info message
SETTER('snackbar/show', 'MESSAGE', '[BUTTON_LABEL]', [callback_dismiss])success message
SETTER('snackbar/success', 'MESSAGE', '[BUTTON_LABEL]', [callback_dismiss])warning message
SETTER('snackbar/warning', 'MESSAGE', '[BUTTON_LABEL]', [callback_dismiss])NEW waiting message
SETTER('snackbar/waiting', 'MESSAGE', '[BUTTON_LABEL]', [callback_dismiss])messagecan containHTMLcodejComponent
v19|v20
Configuration:
button{String}A label for dismiss button (default:OK)timeout{Number}A timeout in milliseconds (default:4000)
Works with ASETTER:
- errors are handled automatically
 
// Without callback
AJAX('POST /api/profile/', userprofile, ASETTER('snackbar/response', 'Profile has been saved successfully'));
// Or with a callback
AJAX('POST /api/profile/', userprofile, ASETTER('snackbar/response', 'Profile has been saved successfully', function(response) {
    console.log(response);
}));
// Or with a callback and without a message
AJAX('POST /api/profile/', userprofile, ASETTER('snackbar/response', function(response) {
    console.log(response);
}));
// With auto-binding
AJAX('POST /api/profile/', userprofile, ASETTER('snackbar/response', '?.response'));
AJAX('POST /api/profile/', userprofile, ASETTER('snackbar/response', 'Your message', '?.response'));
Author
- Peter Širka petersirka@gmail.com
 - License
 
Created
18. october 2017
Updated
31. january 2023
jComponent library
19 | 20
Version
v1
License
https://www.totaljs.com/license/
Responsive
No
Author
Peter Širka
Email
petersirka@gmail.com

