Oracle ADF commandToolbarButton “取消”按钮刷新屏幕数据和输入域转大写

<af:document title="UI_SPT_MDA_040.jspx" id="d1">
            <af:resource type="javascript">
              function customConfirm(event) {
                  location.reload();
              }
            </af:resource>
            <af:commandToolbarButton text="取消" 
                                     shortDesc="cancel" 
                                     icon="/styles/images/toolbar/copy.png"
                                     id="ctb5">
                <af:clientListener type="action" method="customConfirm"/>
            </af:commandToolbarButton>
</af:document>


只要在stype中设置
text-transform:uppercase;
就可以了 在ADF中,设置属性
contentStyle="text-transform:uppercase;"
即可

你可能感兴趣的:(JavaScript,oracle,UI,function,action)