如何在Oracle adf (版本12c - 12.2.1.3.0)中使用选框标记?或者一些功能,从右到左滚动一些消息(消息应该从数据库中挑选)。
下面的代码可以在11g中运行,但在迁移到12c后消息不会滚动。
< marquee>< af:outputText id="ot1“ot1 /marquee>
我已经尝试了下面的oracle推荐,即使它不起作用。
< af:outputText inlineStyle="height=100%“id="prdc2”escape="false“value="< marquee bgcolor=orange height=20 direction=right behavior=alternate scrollDelay='200‘id='rates’dataFormatAs='text‘behavior='alternate'>#{bindings.rateText}< /marquee>"/>
推荐链接:https://support.oracle.com/knowledge/Middleware/1140463_1.html
发布于 2019-08-19 19:06:23
<marquee direction ="left" onmouseover="this.stop();"
onmouseout="this.start();" scrolldelay="120">
<af:outputFormatted id="marquee_text"
value="Welcome to ADF. Any warnings will be updated here. "
inlineStyle="color:Red; font-weight:bold;"/>
</marquee>在af表单中使用此代码它对我很有效
https://stackoverflow.com/questions/56626516
复制相似问题