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
HoJo LenoxHoJo Lenox 

create a VF page where user can enter a record value and all the fields of that record should show up if the status of that record is '0'

Andrew EchevarriaAndrew Echevarria
Yup, so wrap the hidden area in an <apex:outputPanel rendered="{!Field == 0}"> tag. Then wrap that one around another <apex:outputPanel id="hiddenbox"> tag. 

On the field where you enter the status, have an onchange property that reRenders "hiddenbox", then this will reRender the hidden box everytime it changes, and when it is 0, the other fields within that box will show. If it changes to not be 0, they will be hidden again. 

Hope this helps!