-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to reorder list with ion-checkbox in the list item #7339
Comments
@jntr06 can you provide a minimum plunker example? You can use this as a base: also, make sure to follow the issue template. please include the output of Thanks! |
Hi manucorporat, home.html <ion-list reorder = "true">
<ion-item *ngFor ="let item of items" >
<ion-checkbox></ion-checkbox>
<ion-label>{{item}}</ion-label>
</ion-item>
</ion-list> home.ts export class HomePage {
greeting: string;
constructor(private nav: NavController) {
this.initialize();
}
initialize(){
this.items = ['USA','France','Italy','Australia','England']
}
goToPage1() {
this.nav.push(Page1);
}
} |
@jntr06 thanks a lot for the plunker, it helps a lot. I will look into it tomorrow! |
@jntr06 fixed! it should work in next release! thanks for the report! |
Thank you :) |
If I put an ion-checkbox in the list item, I can't reorder it.
The text was updated successfully, but these errors were encountered: