Problem with nested lists
See original GitHub issueI’m using nested lists:
parent list: accept from A child list: accept from B
The problem is that when I drag an element from A into the child list, sometimes it allows me to drop it inside.
The same happens if I set the put
attribute to allow only from B or if I just use the same group name for B and for the child list.
Issue Analytics
- State:
- Created 9 years ago
- Reactions:3
- Comments:31 (1 by maintainers)
Top Results From Across the Web
Nested Lists - HackerRank
Given the names and grades for each student in a class of students, store them in a nested list and print the name(s)...
Read more >HackerRank Nested Lists problem solution in Python
In this HackerRank Nested Lists problem-solution set, we need to develop a python program in which we have given the names and grades...
Read more >Hackerrank Python Nested Lists exercise - Stack Overflow
The problem is that, in your second loop, you're removing item from a list you're iterating on, which is always a bad idea....
Read more >Flatten Nested List Iterator - LeetCode
You are given a nested list of integers nestedList . Each element is either an integer or a list whose elements may also...
Read more >Nested lists don't quite work properly - Marked Support
The product as a whole is fantastic, but I do have one small problem with nested bullet lists. Specifically, create a bullet list...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
👍 @RubaXa Thanks for a great module. Would love to see support for nesting as well ! Any idea when this might happen ?
I had trouble with first level nesting when trying to create a sortable grid layout demo. See: http://codepen.io/anon/pen/ogoEww In my case the rows would not be properly sortable when the colums where set sortable too. The problem was solved by adding:
to the options of the columns. Hope this helps someone…