Giter VIP home page Giter VIP logo

Comments (5)

tiberiuzuld avatar tiberiuzuld commented on July 18, 2024

Hi @rishi-ios ,
Yes it seems that the events are not fired. Will have it fixed today.
Thank you for reporting this.

from angular-gridster2.

tiberiuzuld avatar tiberiuzuld commented on July 18, 2024

Hi @rishi-ios ,
Fixed in v2.7.6
Let me know if you find any more issues.

from angular-gridster2.

rishi-ios avatar rishi-ios commented on July 18, 2024

Thanks @tiberiuzuld

Really appreciate your quick fix 👍 .

Also I have one more query, right now I am using grid item with vertical scroll with max columns 2.
By default on inserting any new record it goes through at the end of all grid items(on bottom).
But what I want is that if a new item is added to the grid it should come at first place(on top).

I tried with following code to use array unshift in place of push but it didn't worked.

this.dashboard.unshift ({ cols: 1, rows: 1, minItemRows: 2, minItemCols: 2, label: 'move to first place', dragEnabled: true, resizeEnabled: true });

Can you please let me know how to insert grid item from top.

Thanks

from angular-gridster2.

tiberiuzuld avatar tiberiuzuld commented on July 18, 2024

Hi @rishi-ios
The position in array doesn't matter you need to modify to set y = 0 and x= 0 or 1 and move all other widgets to y +=1 .

The lib code on new item will do this.

if (item.x === undefined || item.y === undefined) {
      this.autoPositionItem(item);
    } else if (this.checkCollision(item)) {
      console.warn('Can\'t be placed in the bounds of the dashboard, trying to auto position!/n' +
        JSON.stringify(item, ['cols', 'rows', 'x', 'y']));
      item.x = undefined;
      item.y = undefined;
      this.autoPositionItem(item);
    }
  1. So first move all widgets on the first column (x == 0) you have to y +=1 .
  2. Call grid this.options.optionsChanged(); to know that options changed externally
  3. Then push the new widget this.dashboard.push({ cols: 1, rows: 1, x: 0, y: 0, label: 'move to first place', dragEnabled: true, resizeEnabled: true });

Let me know if this works. Didn't test it.

from angular-gridster2.

rishi-ios avatar rishi-ios commented on July 18, 2024

Thanks @tiberiuzuld

I checked it and its working right as you mentioned 👍

from angular-gridster2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.