Gridster is a jQuery plugin that allows building intuitive draggable layouts from elements spanning multiple columns.

learn more… | top users | synonyms

4
votes
1answer
91 views

Target certain CSS Classes with Gridster Plugin

I'm using the Gridster plugin, where columns width are defined like this: [data-sizex="12"] { width: ... } [data-sizex="11"] { width: ... } [data-sizex="10"] { width: ... } .... I have 2 questions ...
3
votes
1answer
218 views

gridster: Can you limit the touchable area of a widget to a specific area?

The canonical use of gridster seems to be one where the entire object can be touched to indicate that a drag operation is to be started. Is it possible to limit that touchable region to a specific ...
3
votes
1answer
970 views

How to drop a draggable into gridster

Does anyone know if it is possible to drop a draggable element into gridster? http://gridster.net/#documentation It seems great for my purposes, but can you add them to the grid by dropping it? I ...
3
votes
1answer
156 views

jQuery Dragable and Resizable conflicting

I'm using the Gridster Plugin(http://gridster.net). I found an updated demo at Github of this which is resizable. I have also added the jQuey livequery plugin in order to go well with the future ...
2
votes
1answer
860 views

setting minimum width and height for each gridster.js widget

I'm using gridster.js combined with Jquery UI to make it resizable by dragging using this bit: $('.layout_block').resizable({ grid: [grid_size + (grid_margin * 2), grid_size + (grid_margin * 2)], ...
1
vote
1answer
58 views

Get data value and apply a class if it equals a certain value

Hi I have a homework assignment that requires the use of gridster.js and I want to be able to check if a list item's data-row attribute equals a certain value and its data-col attribute equals a ...
1
vote
1answer
827 views

Good Gridster Demos?

Are there any good demonstrations of Gridster online on jsfiddle or jsbin, etc.?? Is there a way to control the maximum height and width of the gridster table? and make the widgets play inside this ...
1
vote
0answers
237 views

Gridster remove widget by dragging into div

I am using gridster.js and am trying to figure out a good way to set it up where I can drag one of the widgets into a "trash can" like div and have it remove that widget from the grid. If anyone has ...
1
vote
1answer
109 views

Make this widget for jQuery-plugin work?

I am using the jQuery plugin Gridster. I have made an add_widget button which adds a new widget. This widget can be deleted again also. All this is working properly. But when you click the header it ...
0
votes
3answers
822 views

gridster ,do not invoke the click action for the div

I'm using Gridster (http://gridster.net/) which able to drag the content inside the li . In my li there is a clickable div. <li data-row="1" data-col="1" data-sizex="2" data-sizey="1"> ...
0
votes
1answer
306 views

Enabling drag and drop with Gridster.js

I am attempting to user Gridster.js to have an editable drag and drop grid (as per the example here on their home page). I have setup a really basic example, to get it working - it all appears great, ...
0
votes
1answer
45 views

emberjs event for when model changes

I have an emberjs app that is structured very much like the sample here: https://github.com/tildeio/bloggr-client The question I have is that when the user clicks on a 'post' on the left, is there ...
0
votes
1answer
177 views

Gridster center align when content wrapper is 100%?

Has anyone figured out how to center align the content-wrapper in Gridster, if the wrapper is set to 100%? I can't seem to get it to work. When the browser window is resized there is some ...
0
votes
0answers
41 views

Gridster wont let me add more than 3 columns?

The image below shows the problem. There appears to be room for another column (I've programmed the available area as 1500px, so technically there should be room for 5) but whatever happens Gridster ...
0
votes
0answers
39 views

Gridster--how to drag a grid from one gridster to another gridster

how to drag a grid from one gridster to another gridster how can i drag a grid from one gridster to another gridster $(function () { //DOM Ready $(".gridster ul").gridster({ ...
0
votes
0answers
79 views

Gridster widget in the right most data-col jumps to the row below when resized

I'm making the gridster responsive using this code: https://github.com/ducksboard/gridster.js/issues/77 Why does the widget in the right most data-col jumps to the row below? ...
0
votes
1answer
154 views

How to make Gridster added widgets resizable?

I've based my project off this Fiddle But I have made it so you can add widgets using: $(document).on("click", "#add", function() { var gridster = $(".layouts_grid ul").gridster().data('gridster'); ...
0
votes
0answers
76 views

Gridster add_widget is slow

I want use Gridster for my web site, but i need to add lot of widgets with "add_widget" command. I do a test and i think there is a problem with "add_widget" function : grid is more and more slow and ...
0
votes
0answers
217 views

Gridster Dynamic Size

This is regarding the Gridster Plugin(http://gridster.net/). According to this, Now gridster has dynamic size. I have used the updated javascript and followed the way they mentioned, but its not ...
0
votes
1answer
147 views

Optimized HTML/JS/CSS Dashboard for iPad with DnD

I'm currently trying to create a usable HTML/CSS/JS based dashboard that behaves reasonably well on an iPad. The Dashboard will contain several widgets with mainly charts. I started using gridster and ...
0
votes
1answer
404 views

DIV sizing/scrolling with gridster and scrolling

Here's a jsfiddle showing the problem: http://jsfiddle.net/FQxYB/9/ To avoid posting error "don't just link to fiddle"... here's the fiddle details (why can't this be done automatically by ...
0
votes
1answer
559 views

Howto use Gridster with div (not ul)

I'm trying to use Gridster, the jQuery Drag & Drop library. However, my HTML has a structure as in this JSFiddle ( http://jsfiddle.net/twashing/4xc6s/5/ ). And I can't get gridster to work. Ie, ...
0
votes
1answer
391 views

Handle click event with Gridster

Using Gridster, I can bind events on start and stop dragging. But how can I bind event to a single click on an item? I need to be able to select an item in order to remove it, or to set some ...
0
votes
1answer
354 views

How to get Gridster to reposnse faster to drag events on mobile

I have setup a basic Gridster.js demo here: http://jsfiddle.net/dvPaF/ My goal is to make it more "responsive" to drag events. Right now there is a noticeable delay between dragging an element with a ...
0
votes
1answer
262 views

Call Gridster multiple times

I love the drag and drop concept of Gridster, but I have a dynamic set of tiles that changes depending on live updates from Meteor. For example, lets say I have a Tiles array in a User model. When the ...