2015-07-30 11:34:04 +00:00
## Flash message
2015-05-27 10:57:02 +00:00
Displays a floating flash message on the screen.
2015-07-30 11:34:04 +00:00
### Display onload
2015-10-16 23:51:40 +00:00
< p data-control = "flash-message" data-interval = "5" class = "success" >
This message is created from a static element. It will go away in 5 seconds.
< / p >
2015-07-30 11:34:04 +00:00
### Trigger
< p >
2015-10-16 23:51:40 +00:00
< a href = "#" class = "btn btn-primary" onclick = "$.oc.flashMsg({text: 'The record has been successfujavascript:;ly saved. This message will go away in 1 second.', 'class': 'success', 'interval': 1}); return false;" >
Create Success message
< / a >
2015-07-30 11:34:04 +00:00
< / p >
2015-05-26 09:16:09 +00:00
2015-07-30 11:34:04 +00:00
< p >
2015-10-16 23:51:40 +00:00
< a href = "javascript:;" class = "btn btn-danger" onclick = "$.oc.flashMsg({text: 'Babam!', 'class': 'error'}); return false;" >
Create Error message
< / a >
2015-07-30 11:34:04 +00:00
< / p >
2015-05-26 09:16:09 +00:00
2015-07-30 11:34:04 +00:00
< p >
2015-10-16 23:51:40 +00:00
< a href = "javascript:;" class = "btn btn-warning" onclick = "$.oc.flashMsg({text: 'Warning! October is too good for this world!', 'class': 'warning'}); return false;" >
Create Warning message
< / a >
2015-07-30 11:34:04 +00:00
< / p >
2015-10-16 23:51:40 +00:00
### Data attributes:
- data-control="flash-message" - enables the flash message plugin
- data-interval="2" - the interval to display the message in seconds, optional. Default: 2
### JavaScript API:
```js
$.oc.flashMsg({
'text': 'The record has been successfully saved.',
'class': 'success',
'interval': 3
})
```