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
hbrose@egencia.comhbrose@egencia.com 

Input boxes missing

Hi,

 

I have two pages in which the code is nearly idental, but one page isn't rendering the input boxes. 

 

Rendering:

<tr> 
                            <td style="width:130px"><apex:outputlabel value="Your Full Name"/><apex:outputtext value=" *" style="color:red;"/></td>
                            <td>
                                <apex:inputfield style="width:40%;" value="{!cas.SuppliedName}" rendered="{!errors==false || suppliednameerror==''}"/>
                                <apex:inputfield style="width:40%; background-color:#FFD5D5;" value="{!cas.SuppliedName}" rendered="{!errors==true && suppliednameerror !=''}"/>
                                &nbsp;
                                <apex:outputtext style="color:red; font-weight:bold;" value="Your Full Name " rendered="{!errors==true && suppliednameerror != ''}"/>
                                <apex:outputtext style="color:red;" value="{!suppliednameerror}" rendered="{!errors==true}"/>
                            </td>
                        </tr>

 

 

Not Rendering:

<tr> 
                            <td style="width:130px"><apex:outputlabel value="Your Full Name"/><apex:outputtext value=" *" style="color:red;"/></td>
                            <td>
                                <apex:inputfield style="width:40%;" value="{!cas.SuppliedName}" rendered="{!errors==false || suppliednameerror==''}"/>
                                <apex:inputfield style="width:40%; background-color:#FFD5D5;" value="{!cas.SuppliedName}" rendered="{!errors==true && suppliednameerror !=''}"/>
                                &nbsp;
                                <apex:outputtext style="color:red; font-weight:bold;" value="Your Full Name " rendered="{!errors==true && suppliednameerror != ''}"/>
                                <apex:outputtext style="color:red;" value="{!suppliednameerror}" rendered="{!errors==true}"/>
                            </td>
                        </tr>
SabrentSabrent

Are both pages referecing the same controller?