Create a Visualforce page using InputText Tag

By | October 21, 2019

VF Page

<apex:page >
    <apex:form >
        <apex:pageblock title="INPUTTEXT">
            <apex:pageBlockSection >
                Text<apex:inputText />
                maxlength:<apex:inputText maxlength="5"/>
                size :<apex:inputText size="5"/>
                disabled:<apex:inputText disabled="true"/>
                direction <apex:inputText dir="RTL"/>
                required <apex:inputText required="true"/>
                rendered <apex:inputText rendered="false" />                
            </apex:pageBlockSection>
        </apex:pageblock>
    </apex:form>
</apex:page>

Output

Leave a Reply

Your email address will not be published. Required fields are marked *