• praveenpp
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi,

     i have staff page using User object internally(in controller staff= new User();).

    I would like to negate the value       staff.IsActive  and want to bind with inputfileld.

becouse in Staff form i have  a Lable InActive. and i can not changed that cos of UI specification.

 

   like

 ........

<tr>

<td class="clsPanelInputCheckboxTD">

 <apex:inputField value="{!staff.IsActive}" />

<apex:outputLabel styleClass="clsPanelCheckBoxLabel" value="{!$Label.inactive}" />

</td>

</tr>

</table>

</apex:outputPanel>

 

 

Could you please suggest me the way so I can bind Active user with Inactive Lable in UI.