function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ramlakhanramlakhan 

tabbing error

This code is giving an error in tabindex.This tabindex is not available in component library.The code snipet is from visualforce guide.Could you please tell if there is any versionong issue or anything?
<apex:page standardController="Account">
    <apex:form>
    <apex:pageBlock title="Edit Account: {!Account.Name}">
        <apex:pageBlockSection title="Account Details" columns="1">
            <apex:inputField value="{!Account.Name}" tabIndex="4"/>
            <apex:inputField value="{!Account.Website}" tabIndex="3"/>
            <apex:inputField value="{!Account.Industry}" tabIndex="2"/>
            <apex:inputField value="{!Account.AnnualRevenue}" tabIndex="1"/>
        </apex:pageBlockSection>
    </apex:pageBlock>
    </apex:form>
</apex:page>

Thanks in advance.
Jagannatha Reddy BandaruJagannatha Reddy Bandaru
Hi Ram,

tab index is not  related attribute for <apex:input field>
that's why you may getting the error.

you just remove tabindex attribute and save it.


Thanks,
Jagan
jagan.srit@gmail.com