我正在尝试为输入文本框提供背景色。如果我使用内联样式,它将为字段赋予颜色。现在如何更改背景颜色。

下面是我的代码:

 <?xml version="1.0" encoding="UTF-8" ?>
<amx:view xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:amx="http://xmlns.oracle.com/adf/mf/amx"
      xmlns:dvtm="http://xmlns.oracle.com/adf/mf/amx/dvt">
<amx:panelPage id="pp1">
<amx:facet name="header">
  <amx:outputText value="Header" id="ot1"/>
</amx:facet>
<amx:inputText label="Name" id="it1"  inlineStyle="background-color:blue;"
  value="#{preferenceScope.feature.feature1.security.username}"/>
  <amx:inputText label="Password" id="it2"
  value="#{preferenceScope.feature.feature1.security.password}"/>
  <amx:inputText label="URL" id="it3" value="#{preferenceScope.feature.feature1.security.url}"/>
</amx:panelPage>
</amx:view>


下面是输出:

最佳答案

创建CSS文件(新=> html => css文件)并添加以下代码

   .textcolor input{
        background-color:Blue !important;
    }


在输入文本Style Class属性中,写入textcolor(您刚刚添加到css文件中的类)。

然后打开adfmf-feature.xml,在“内容”选项卡下选择您的功能,包括您创建的CSS文件。

而已。

10-04 12:50