【问题标题】:How do I show the specific items in the navigated screen after on select gallery item in Powerapps?在 Powerapps 中选择图库项目后,如何在导航屏幕中显示特定项目?
【发布时间】:2019-01-17 22:25:19
【问题描述】:

样本数据:

下面是垂直图库图片:

选择垂直图库中的“Office”项目后的样子:

在选择办公室画廊项目时,我只想显示楼层 1 的区域描述,builingID 1 和区域描述为办公室。

【问题讨论】:

    标签: powerapps powerapps-formula


    【解决方案1】:

    您可以通过在第一个图库上的箭头图标的 OnSelect 属性中创建一个集合来实现此目的。这可以通过使用以下公式来实现。

    ClearCollect(
    TempCollection,
    Filter(
        Datasource,
        areaName = ThisItem.areaName
    ) )
    

    然后您可以将 TempCollection 设置为第二个画廊的 Items 属性

    【讨论】:

      猜你喜欢
      • 2019-05-07
      • 1970-01-01
      • 2013-12-08
      • 1970-01-01
      • 2019-07-07
      • 1970-01-01
      • 1970-01-01
      • 2020-02-15
      • 2019-03-25
      相关资源
      最近更新 更多