Salesforce 如何在SFDC的视觉力中获得强制标志?

Salesforce 如何在SFDC的视觉力中获得强制标志?,salesforce,Salesforce,我对SDFC的Visual Force代码不熟悉。我想在我开发的pageBLockSection的“Entry Section”代码上获得如下所示的强制详细信息需求标志。我该怎么做 要使输入标记成为必需的,请为输入设置required='true' 例如,我是说!=所需信息应-此信息我想显示在页面块对不起,误解了问题。只需在页面块标记上设置mode=“edit”。 <apex:page standardController="account"> <apex:form&

我对
SDFC
Visual Force
代码不熟悉。我想在我开发的pageBLockSection的“Entry Section”代码上获得如下所示的强制详细信息需求标志。我该怎么做


要使输入标记成为必需的,请为输入设置required='true'


例如,我是说!=所需信息应-此信息我想显示在页面块对不起,误解了问题。只需在页面块标记上设置
mode=“edit”
<apex:page standardController="account">
    <apex:form>
        <apex:pageBlock title="Block One">
            <apex:pageBlockSection title="Entry Section">
                <apex:inputField value="{!account.Name}"/>
                <apex:inputField value="{!account.phone}"/>
                <apex:inputField value="{!account.billingcity}"/>
                <apex:inputField value="{!account.Industry}"/>

                <apex:commandButton value="Submit" action="{!save}"/>
            </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
</apex:page>