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

learn more… | top users | synonyms

0
votes
1answer
150 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, ...
1
vote
1answer
37 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 ...
0
votes
0answers
26 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 ...
1
vote
0answers
97 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 ...
0
votes
0answers
147 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 ...
4
votes
1answer
71 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 ...
0
votes
0answers
97 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
140 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 ...
1
vote
1answer
508 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
194 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
91 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 ...
2
votes
1answer
172 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 ...
0
votes
1answer
255 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 ...
0
votes
1answer
487 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
331 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
300 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
3answers
693 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"> ...
3
votes
1answer
805 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 ...
0
votes
1answer
296 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 ...
2
votes
1answer
772 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)], ...