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
Arun TyagiArun Tyagi 

Error Error: Unsupported attribute tabindex in <apex:inputField>

<apex:page controller="OppsController">
<apex:form>
<apex:dataTable value="{!OpportunitiesWithIndex}" var="oppWrapped">
<apex:column>
<apex:facet name="header">Opportunity</apex:facet>
<apex:outputField value="{!oppWrapped.opp.name}"/>
</apex:column>
<apex:column>
<apex:facet name="header">Amount</apex:facet>
<apex:inputField value="{!oppWrapped.opp.amount}"
tabindex="{!oppWrapped.tabIndex}"/>
</apex:column>
</apex:dataTable>
</apex:form>
</apex:page>
plz help , I am getting this error([Error] Error: Unsupported attribute tabindex in <apex:inputField> in tabbedAccount at line 11 column 36)
Vishal Negandhi 16Vishal Negandhi 16
Try taborderhint instead of tabindex.. this should work. 
Rushita Bavishi 1Rushita Bavishi 1
Sorry for late Reply, You use also can use <apex:inputText> istead of <apex:inputField>. because tabIndex is not supperted in <apex:inputField>.