Lobibox is responsive jquery notification plugin specially written for LobiAdmin.
Lobibox is devided into two parts
Messageboxes
Notifications
Features
Messageboxes
Lobibox messages boxes can be modal and not modal as well.
You can show multiple messages at the same time.
Every message can be draggable (On small screens dragging is disabled)
You can show
messages in different colors and icons
confirm message
one line prompt
multiline prompt
Any HTML5 input type can be used in prompt window. Such as: text, color, date, datetime, email, number range ...
Progress messagebox. Lobibox comes with default progress style but you can use bootstrap style progress bar
custom content window with ajax support with custom action buttons
Every message is an instance of "class". You can easily grab the instance and attach events or call methods directly by the instance. See examples bellow.
Notifications
Different color support
Possibility to show in any corners of the screen
Delay after which it disappears
Show delay indicator
Show with image
Sound support
Size support. You can show notifications of different size
Basic Usage
Confirm
Lobibox.confirm({
... //Options
});
Alert
Lobibox.alert(
'error|success|warning|info', // Any of the following
{
... //Options
}
);
Prompt
Lobibox.prompt(
'', // Any HTML5 input type is valid
{
... //Options
}
);
Progress
Lobibox.progress({
... //Options
});
Window
Lobibox.window({
... //Options
});
Full documentation and example codes are available after purchasing.
Lobibox popup examples
Basic examples
Custom buttons
Disable icon
Advanced usage of Lobibox.window
Callbacks
LobiBox notifications
Large Notifications
Mini notifications
For mini notifications icon and image is shown on small size and title is disabled by default. Although you can enable it by giving title parameter when initializing.