Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi,
Would like to ask whether the Add new Note page can be customize? How to remove field from add new note page?
Thanks
I'm not aware of a way to customize the standard Notes page, but you could you Visualforce and re-create it with less fields. For example:
<apex:page standardController="Note"> <apex:form > <apex:pageBlock title="Note Edit" mode="edit"> <apex:pageBlockButtons > <apex:commandButton action="{!save}" value="Save"/> <apex:commandButton action="{!cancel}" value="Cancel"/> </apex:pageBlockButtons> <apex:pageBlockSection title="Note Information" columns="1"> <apex:inputField value="{!note.title}"/> <apex:inputField value="{!note.body}"/> </apex:pageBlockSection> </apex:pageBlock> </apex:form> </apex:page>
But you would need to add the logic to relate it to its parent object.
Hope that helps,
Sati
I'm not aware of a way to customize the standard Notes page, but you could you Visualforce and re-create it with less fields. For example:
<apex:page standardController="Note"> <apex:form > <apex:pageBlock title="Note Edit" mode="edit"> <apex:pageBlockButtons > <apex:commandButton action="{!save}" value="Save"/> <apex:commandButton action="{!cancel}" value="Cancel"/> </apex:pageBlockButtons> <apex:pageBlockSection title="Note Information" columns="1"> <apex:inputField value="{!note.title}"/> <apex:inputField value="{!note.body}"/> </apex:pageBlockSection> </apex:pageBlock> </apex:form> </apex:page>
But you would need to add the logic to relate it to its parent object.
Hope that helps,
Sati