You need to sign in to do that
Don't have an account?

Replace a View Page with my own page
I want to replace the standard View page with my own page but when I do it comes up editable I need it to be View only and then ad an Edit Button
You need to sign in to do that
Don't have an account?
<apex:PageBlock title="View Item" mode="Detailmain">
All Answers
You could use the code shown in thw screehshot below to get the detail view of a record with the edit button(the buttons may vary with the level of perms user has)
<apex:detail subject="{!case.id}" inlineEdit="true" relatedList="false" title="false"/>
</apex:page>
<apex:PageBlock title="View Item" mode="Detailmain">
Would help if you could share the code so it will help others trying out the same.
Thanks again!