melwinVincent / ionic4-star-rating

Star Rating component for ionic-4 projects
23 stars 11 forks source link

The "readonly" property is not worked by Property Binding. #12

Closed JeongJun-Lee closed 4 years ago

JeongJun-Lee commented 4 years ago

in Template: <ionic4-star-rating halfStar="true" activeColor="#ffce00" defaultColor="#ffce00" rating=5 [readonly]="isReadonly" (ratingChanged)="onRateChange($event)"> </ionic4-star-rating>

in Component: isReadOnly: boolean = true;

But, even the rating is a read-only state, we can modify it.

Example: https://stackblitz.com/edit/ionic-4-angular-8-start-template-l5as1d?file=src%2Fapp%2Ftab2%2Ftab2.page.html

JeongJun-Lee commented 4 years ago

[readonly]="isReadonly?'true':'false'"