Search code examples
javascriptjqueryjquery-ui-resizablegridstack

gridstack.js - keep aspect ratio


I'm using gridstack.js and need to maintain aspect ratio on-resize. I've tried many ways I found on google but nothing is working. Following is a link to JSFiddle I made to demonstrate the issue: jsFiddle

var options = {
    aspectRatio: 16/9
  };

  $('.grid-stack').gridstack(options);  

Solution

  • try this...

    var options = {
    resizable:{
        aspectRatio: 16/9
      }
    };
    
    $('.grid-stack').gridstack(options);