如何在Windows中运行的Ionic 3项目中定位Popover?

时间:2018-03-04 05:16:28

标签: ionic3

我正在尝试在Windows 8.1中显示Ionic popover。我正在使用

带有弹出框接口的

https://ionicframework.com/docs/api/components/select/Select/2。但是,弹出窗口始终从控件的左侧(离子标签)开始。我找不到任何关于如何从控件右侧开始的文档。你能帮忙吗?

这就是我显示popover的方式。

<ion-item no-lines> <ion-label><span *ngIf="!isEditTopic">{{'Choose' | translate}}</span> {{'Topic' | translate}}:</ion-label> <ion-select interface="popover" [(ngModel)]="newTopic.TOPIC_ID" placeholder="Select" disabled="{{isEditTopic}}"> <ion-option *ngFor="let topic of topics" value="{{topic.TOPIC_ID}}"> {{topic.TOPIC_NAME}} </ion-option> </ion-select> </ion-item>

屏幕显示Popover之前 enter image description here

屏幕显示Popover后 enter image description here

0 个答案:

没有答案