You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just found this project, very impressed, maybe i have not read through everything yet and missed it.
But is it possible, or will it be in the future possible, to resize the grid items?
This grid has absolutly everything i need, except that.
If not, would it be possible for me to add it myself?
The text was updated successfully, but these errors were encountered:
Hello.
Gridifier is not modifying DOM nodes or their sizes in any way. (It is responsible only for item position manipulation + animation) - so if you will create resize handler and change DOM node css sizes on that handle drag events the only thing you should do is to ensure grid.reposition() is called after item sizes change. Probably it will look somehow like this:
varfunctionToCallOnDragHandlerMove=function(){// Change all items width/height or class names like $(".grid-item").addClass("smallSize"); gridifierInstance.reposition();// Call reposition to notify gridifier about size changes};
Just found this project, very impressed, maybe i have not read through everything yet and missed it.
But is it possible, or will it be in the future possible, to resize the grid items?
This grid has absolutly everything i need, except that.
If not, would it be possible for me to add it myself?
The text was updated successfully, but these errors were encountered: