gpt4 book ai didi

javascript - sapui5 fiori xml View 如何添加BulletChart

转载 作者:行者123 更新时间:2023-12-03 10:10:36 24 4
gpt4 key购买 nike

我正在 fiori(sap web ide)中编码,但我缺乏理解:

<mvc:View
xmlns="sap.m"
xmlns:core="sap.ui.core"
xmlns:mvc="sap.ui.core.mvc"
xmlns:l="sap.ui.layout"
xmlns:f="sap.ui.layout.form" controllerName="test.view.Detail">
<Page id="detailPage" navButtonPress="onNavBack" title="{i18n&gt;detailTitle}" showNavButton="{device&gt;/isPhone}">
<content>
<ObjectHeader id="detailHeader" title="{SelectedOption}" introActive="false" titleActive="false" iconActive="false">
<customData id="customData3">
<core:CustomData id="coreCustomData3" key="sapDtResourcePath" value="ClaimingHeader"></core:CustomData>
</customData>
<attributes id="detailAttributes">
<ObjectAttribute id="attribute" text="{i18n&gt;detailText}" active="false"></ObjectAttribute>
</attributes>
<firstStatus id="detailStatus">
<ObjectStatus id="status" text="{SelectedOption}">
<customData id="customData4">
<core:CustomData id="coreCustomData4" key="sapDtResourcePath" value="ClaimingHeader"></core:CustomData>
</customData>
</ObjectStatus>
</firstStatus>
</ObjectHeader>
<IconTabBar id="idIconTabBar" expanded="{device&gt;/isNoPhone}">
<customData id="customData5">
<core:CustomData id="coreCustomData5" key="sapDtResourcePath" value="ClaimingHeader"></core:CustomData>
</customData>
<items id="detailsItems">
<IconTabFilter id="iconTabFilter1" key="selfInfo" icon="sap-icon://calendar">
<content>
<f:SimpleForm id="iconTabFilter1form" minWidth="1024" editable="false" layout="ResponsiveGridLayout" labelSpanL="3" labelSpanM="3" emptySpanL="4" emptySpanM="4" columnsL="1">
<f:content>

在代码的底部,我想包含来自 sapui5 sdk 的示例代码: Code: Bullet Micro Chart

问题是,BulletChart 的代码以

开头
<core:View controllerName="sap.suite.ui.commons.sample.BulletChart.BulletChart" xmlns="sap.suite.ui.commons" xmlns:core="sap.ui.core">

我的问题是,如果我添加这个 core:View.. 在 mvc:View.. 和/或其另一个 Controller ,controllerName="sap.suite.ui.commons.sample.BulletChart 中,它不起作用.BulletChart,要放入 mvc:view 内部,其中已经有一个 Controller 。

有人可以帮我解释一下,如何把这个 BulletChart 放在这个地方吗?

感谢帮助! Imagehack 上的屏幕截图我想要做什么@下面的链接。

Screenshot on Imageshack what i want to do

最佳答案

您必须按照下面描述的方式进行:

xmlns:commons="sap.suite.ui.commons" 添加到您的 XML

<mvc:View
xmlns="sap.m"
xmlns:core="sap.ui.core"
xmlns:mvc="sap.ui.core.mvc"
xmlns:l="sap.ui.layout"
xmlns:f="sap.ui.layout.form"
xmlns:commons="sap.suite.ui.commons"
controllerName="test.view.Detail">

然后在页面内容中添加:请注意,我们需要根据 xmlns 声明拥有适当的命名空间

<commons:BulletChart size="XS" scale="M" targetValue="100" forecastValue="110" class="marginTopLeft" press="press">
<commons:actual>
<commons:BulletChartData value="120" color="Good"/>
</commons:actual>
<commons:thresholds>
<commons:BulletChartData value="0" color="Error"/>
<commons:BulletChartData value="50" color="Critical"/>
<commons:BulletChartData value="150" color="Critical"/>
<commons:BulletChartData value="200" color="Error"/>
</commons:thresholds>
</commons:BulletChart>

关于javascript - sapui5 fiori xml View 如何添加BulletChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30131623/

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