Apex commandButton Styleclass不适用

时间:2013-08-15 22:20:55

标签: apex-code commandbutton

我有两个VF页面。一个是常规页面,另一个是样式页面。样式页面中定义的样式类“button1”无法应用于常规页面中的commandButton。我调查翻译的HTML代码。这些commandButton的样式类是'btn button1',而不是我定义的'button1'。为什么SalesForce编译器会为它添加'btn'?感谢。

常规的是:

<apex:page standardController="Account" standardStylesheets="false">
    <apex:include pageName="{!$Page.MyStylePage}"/>
    <apex:form>
        <apex:commandButton value="Dismissed" styleClass="button1"/>
        <apex:commandButton value="Pursue" styleClass="button1"/>
    </apex:form>
</apex:page>

样式页面是

<apex:page id="MyStylePage">
    <style type="text/css">
    .button1 {
            border:  1px;
            padding: 10px;
            margin-left: 50px;
            margin-right: 50px;
        }
    </style>    
</apex:page>

1 个答案:

答案 0 :(得分:0)

SF样式会覆盖您的样式,您可以将按钮更改为

<input type="button" style="button1" title="Pursue" />