gridstack.js/README.md

214 lines
6 KiB
Markdown
Raw Normal View History

2014-11-10 03:18:33 +01:00
gridstack.js
============
2014-11-12 04:45:36 +01:00
gridstack.js is a jQuery plugin for widget layout. This is drag-and-drop multi-column grid. It allows you to build
draggable responsive bootstrap v3 friendly layouts. It also works great with [knockout.js](http://knockoutjs.com)
2014-11-10 03:41:05 +01:00
2014-11-10 05:14:22 +01:00
Inspired by [gridster.js](http://gridster.net). Built with love.
2014-11-10 03:41:05 +01:00
Demo
====
2014-11-10 03:44:41 +01:00
Please visit http://troolee.github.io/gridstack.js/ for demo.
2014-11-10 03:41:05 +01:00
Usage
=====
2014-11-10 05:14:22 +01:00
2014-11-12 06:21:21 +01:00
## Requirements
2014-11-12 08:01:01 +01:00
* http://underscorejs.org (>= 1.7.0)
* http://jquery.com (>= 1.11.0)
* http://jqueryui.com (>= 1.11.0)
* (Optional) http://knockoutjs.com (>= 3.2.0)
2014-11-10 05:17:33 +01:00
2014-11-17 09:15:14 +01:00
## Basic usage
```html
<div class="grid-stack">
2014-11-17 09:17:09 +01:00
<div class="grid-stack-item"
data-gs-x="0" data-gs-y="0"
data-gs-width="4" data-gs-height="2">
<div class="grid-stack-item-content"></div>
</div>
<div class="grid-stack-item"
data-gs-x="4" data-gs-y="0"
data-gs-width="4" data-gs-height="4">
<div class="grid-stack-item-content"></div>
</div>
2014-11-17 09:15:14 +01:00
</div>
<script type="text/javascript">
$(function () {
var options = {
cell_height: 80,
vertical_margin: 10
};
2014-11-17 09:17:09 +01:00
$('.grid-stack').gridstack(options);
2014-11-17 09:15:14 +01:00
});
</script>
```
2014-11-17 09:04:18 +01:00
## Options
2014-11-20 05:56:50 +01:00
- `auto` - if `false` it tells to do not initialize existing items (default: true)
- `cell_height` - one cell height (default: 60)
- `handle` - draggable handle selector (default: '.grid-stack-item-content')
- `float` - enable floating widgets (default: false)
2014-11-17 09:04:18 +01:00
- `item_class` - widget class (default: 'grid-stack-item')
2014-11-20 05:56:50 +01:00
- `min_width` - minimal width. If window width is less grid will be shown in one-column mode (default: 768)
2014-11-17 09:04:18 +01:00
- `placeholder_class` - class for placeholder (default: 'grid-stack-placeholder')
- `vertical_margin` - vertical gap size (default: 20)
2014-11-20 05:56:50 +01:00
- `width` - amount of columns (default: 12)
2014-11-17 09:04:18 +01:00
2014-11-17 09:15:14 +01:00
## Grid attributes
2014-11-19 03:41:21 +01:00
- `data-gs-width` - amount of columns
2014-11-17 09:15:14 +01:00
2014-11-14 07:34:33 +01:00
## Item attributes
- `data-gs-x`, `data-gs-y` - element position
- `data-gs-width`, `data-gs-height` - element size
- `data-gs-max-width`, `data-gs-min-width`, `data-gs-max-height`, `data-gs-min-height` - element constraints
- `data-gs-no-resize` - disable element resizing
2014-11-21 02:27:52 +01:00
- `data-gs-no-move` - disable element moving
2014-11-17 09:04:18 +01:00
- `data-gs-auto-position` - tells to ignore `data-gs-x` and `data-gs-y` attributes and to place element to the first
available position
2014-11-17 09:58:57 +01:00
## Events
### onchange
Occurs when widgets change their position/size
```javascript
2014-11-17 10:05:25 +01:00
var serialize_widget_map = function (items) {
console.log(items);
};
2014-11-17 09:58:57 +01:00
$('.grid-stack').on('change', function (e, items) {
serialize_widget_map(items);
});
```
## API
### add_widget(el, x, y, width, height, auto_position)
Creates new widget.
Parameters:
- `el` - widget to add
- `x`, `y`, `width`, `height` - widget position/dimensions (Optional)
- `auto_position` - if `true` then `x`, `y` parameters will be ignored and widget will be places on the first available
position
2014-11-17 10:02:26 +01:00
```javascript
2014-11-17 10:02:57 +01:00
$('.grid-stack').gridstack();
2014-11-17 10:02:26 +01:00
2014-11-17 10:02:57 +01:00
var grid = $('.grid-stack').data('gridstack');
2014-11-17 10:02:26 +01:00
grid.add_widget(el, 0, 0, 3, 2, true);
```
2014-11-17 09:58:57 +01:00
### remove_widget(el)
Removes widget from the grid.
Parameters:
2014-11-17 10:05:25 +01:00
- `el` - widget to remove
2014-11-14 07:34:33 +01:00
2014-11-12 04:24:48 +01:00
## Use with knockout.js
```javascript
ko.components.register('dashboard-grid', {
viewModel: {
createViewModel: function (params, componentInfo) {
var ViewModel = function (params, componentInfo) {
var grid = null;
this.widgets = params.widgets;
this.afterAddWidget = function (items) {
_.each(items, function (item) {
item = $(item);
if (grid == null) {
grid = $(componentInfo.element).find('.grid-stack').gridstack({
auto: false
}).data('gridstack');
}
grid.add_widget(item);
2014-11-12 07:37:02 +01:00
ko.utils.domNodeDisposal.addDisposeCallback(item[0], function () {
grid.remove_widget(item);
});
2014-11-12 04:24:48 +01:00
}, this);
};
};
return new ViewModel(params, componentInfo);
}
},
template: [
'<div class="grid-stack">',
' <!-- ko foreach: widgets, afterRender: afterAddWidget -->',
2014-11-12 04:45:36 +01:00
' <div class="grid-stack-item" data-bind="attr: {',
' \'data-gs-x\': x, \'data-gs-y\': y,',
' \'data-gs-width\': width, \'data-gs-height\': height}">',
' <span data-bind="text: $index"></span>',
' </div>',
2014-11-12 04:24:48 +01:00
' <!-- /ko -->',
'</div>'
].join('\n')
});
```
and HTML:
```html
<div data-bind="component: {name: 'dashboard-grid', params: $data}"></div>
```
2014-11-19 03:41:21 +01:00
Changes
=======
2014-11-20 05:57:06 +01:00
#### v0.1.1 (development version)
- add `float` option
- fix default css rule for inner content
2014-11-19 03:41:21 +01:00
#### v0.1.0 (2014-11-18)
2014-11-19 03:45:48 +01:00
Very first version.
2014-11-19 03:41:21 +01:00
2014-11-10 05:17:33 +01:00
License
=======
The MIT License (MIT)
Copyright (c) 2014 Pavel Reznikov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.