LobiPanel is jquery plugin for bootstrap panels specially created for LobiAdmin. It extends panels with several common and useful functions which does not come by default.
LobiPanel initialization is simple. Just create correct markup of bootstrap panel and call plugin
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<h4>Panel title</h4>
</div>
</div>
<div class="panel-body">
Lorem ipsum...
</div>
</div>
<script>
$(function(){
$('.panel').lobiPanel({
//Options go here
...
});
});
</script>
And you will get the following result.
Warning!!!. This operation can not be undone.
.panel-body
from specified URL.Anytime you like (with the same button) you can put the panel in its position.
Full documentation and example codes are available after purchasing.
Unpin the panel and try to resize it.
Load content from specified url and apply highlight code
Drag panels by clicking on the headers
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
data-*
attributes# | First Name | Last Name | Username |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
<div class="panel panel-default lobipanel" data-inner-id="lobipanel-data-attributes" data-body-height="300" data-tooltips="false" data-min-width="400" data-resize="horizontal" data-close="{tooltip: 'custom'}">
<div class="panel-heading">
<div class="panel-title">
This is panel title
</div>
</div>
<div class="panel-body">
content
</div>
</div>