I'm submitting a ...
[x] bug report
[x] feature request
[x] question about the decisions made in the repository
Do you want to request a feature or report a bug?
I'm not sure if it's a bug or a feature
What is the current behavior?
The current behavior is that when I try to create a sortable it must be within a list, I want to create it with fixed elements in my template without using ng-for
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar.
I can't make the plnkr as it doesn't allow me to edit your plnkr but I want something similar to this
import {Component} from '@angular/core';
@Component({
selector: 'simple-dnd',
template: `
Simple Drag-and-Drop operations with no code
Item 1
Item 2
Item 3
Item 4
Item 5
`
})
export class SimpleDndComponent {
simpleDrop: any = null;
}
```
* **What is the expected behavior?**
To be able to sort the list with no array
* **What is the motivation / use case for changing the behavior?**
I have some different DIVs that I want to to change their order by dragging
* **Please tell us about your environment:**
- Angular version: 2.X.X
- Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
I'm submitting a ... [x] bug report [x] feature request [x] question about the decisions made in the repository
Do you want to request a feature or report a bug? I'm not sure if it's a bug or a feature
What is the current behavior? The current behavior is that when I try to create a sortable it must be within a list, I want to create it with fixed elements in my template without using ng-for
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar. I can't make the plnkr as it doesn't allow me to edit your plnkr but I want something similar to this
@Component({ selector: 'simple-dnd', template: `
Simple Drag-and-Drop operations with no code