gpt4 book ai didi

ionic3 - ionic 3 popover 不在按钮旁边

转载 作者:行者123 更新时间:2023-12-04 02:09:06 25 4
gpt4 key购买 nike

我已经完成了 100 秒的时间,它按预期工作,但只是这种情况。

弹出框看起来像:

<ion-content style="padding:5px">
<ion-label class="menu-options-link" (click)="doneTask()">Accept New Leads</ion-label>
</ion-content>

启动弹出窗口的页面如下所示:
<ion-card class="dashboard-widget-layout dashboard-widget">
<ion-card-header class="dashboard-widget-card-header">
<ion-grid>
<ion-row>
<ion-col>
<ion-label class="dashboard-widget-header">New Leads</ion-label>
</ion-col>
<ion-col col-auto>
<ion-icon name="ios-more" style="zoom:1.5"

(click)="showOptions($event)">






启动 ts 是
showOptions(myEvent){
//alert('hey')
var popover = this.leadOptionsPopup.create(LeadOptionsPage, {}, { cssClass: 'options-popover'});
popover.present({
ev: myEvent
});
}

这应该可以,但弹出框相对于图标来说只是遥遥无期。

screenshot to see how it opens

最佳答案

为什么不使用 ion-item而不是 ion-card-header用那个复杂的网格。

<ion-card class="dashboard-widget-layout dashboard-widget">

<ion-item>
New Leads
<ion-icon name="ios-more" item-end (click)="showOptions($event)"></ion-icon>
</ion-item>

</ion-card>

检查 documentation here ,它显示了一张卡片,其中有一个项目作为起始卡片元素。

请检查这个 class="dashboard-widget-card-header"正在对它和 popover 函数中的那个一起做一些事情: options-popover .

关于ionic3 - ionic 3 popover 不在按钮旁边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46396873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com