I need to create the multiple checkbox select box that have grouping label inside the box. Example
-Appetizer:
---Salad
---etc
-Main Course:
---Steak
---etc
-Desert:
---Ice Cream
---etc
This is my code:
<ion-select [(ngModel)]="food" multiple="true">
<ion-label>Toppings</ion-label> <!-- I want to create group label in here -->
<ion-option>Bacon</ion-option>
<ion-option>Black Olives</ion-option>
<ion-option>Extra Cheese</ion-option>
<ion-option>Mushrooms</ion-option>
<ion-option>Pepperoni</ion-option>
<ion-option>Sausage</ion-option>
</ion-select>
How to create the grouping label inside the ion-select? Thanks..
2条答案
按热度按时间eivgtgni1#
一个很好的方法是将disabled标记添加到“label”中。
这将导致该选项不可选,然后可以向其添加类,以便根据需要调整外观。
prdp8dxp2#
我用它在爱奥尼克5/6
在.html文件中
和global.scss中的文件