question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Gridster inside gridster

See original GitHub issue

It’s possible to insert a <gridster> inside a <gridster-item> element?

Something like:

<gridster> <!-- outter --> <gridster-item> <!-- item from outter --> <gridster> <!-- inner --> <gridster-item> <!-- item from inner gridster --> </gridster-item> </gridster> </gridster-item> </gridster>

sry for the confusion :x

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:3
  • Comments:35 (14 by maintainers)

github_iconTop GitHub Comments

2reactions
rodriandersoncommented, Dec 20, 2017

It’s possible to insert a <gridster> inside a <gridster-item> element?

`widgets: Array<any> = [
     {
        x: 1, y: 0, w: 2, h: 2,
        dragAndDrop: false,
        resizable: true,
        title: 'Gridster in gridster',
		widgets2: 
		[
			{
				x: 0, y: 0,
				w: 2, h: 2,
				dragAndDrop: true,
				resizable: true,
				title: 'gridster item or gridster'
			},
			{
				x: 1, y: 0, w: 2, h: 2,
				dragAndDrop: true,
				resizable: true,
				title: 'gridster item or gridster'
			},
			{
				x: 1, y: 1, w: 2, h: 2,
				dragAndDrop: true,
				resizable: true,
				title: 'gridster item or gridster'
			}
		]
    }
];`

grister_sample

video

1reaction
delashumcommented, Jun 28, 2018

How do you actually use the gridster inside of another? I did what seemed intuitive but when dragging a prototype it adds a new item to both parent and child and throws a bunch of errors. Is there somewhere I can look to see an example of some sort of documentation of this?

Read more comments on GitHub >

github_iconTop Results From Across the Web

javascript - Gridster inside Gridster
I want nested gridster (gridster indside gridster).Just similar to Nested Gridstack. For this I wrote my Gridster code by reading some ...
Read more >
Can we do nesting of gridster with-in a "gridster-item" ? #152
Hi @sreekumarp , You can try, let me know if it works. Never tried it, and I don't see a use case for...
Read more >
gridster.js - GitHub Pages
Gridster is a jQuery plugin that allows building intuitive draggable layouts from elements spanning multiple columns.
Read more >
Gridster In Angular
Editor Preview Both. Sign in. Project. Search. Settings. Switch to Light Theme. Enter Zen Mode. Project. Download Project. Info. Gridster In Angular.
Read more >
angular-gridster-enhanced
resize is a jQuery plugin needed to check for changes in the gridster size. Usage. // load the gridster module.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found