質問

I would like to ask for some help with apex coding. It occurred that it would be really useful to do the custom tab which would refer to the particular URL. Now we have it as a custom link but it would be much nicer if this custom link is actually as a tab - so all the process of "clicking" would remain in the tabs line.

However, to do this it is needed to do some apex coding (which I am not experienced with). Could anyone help me with the code which will lead to the URL?

役に立ちましたか?

解決

After your clarification i guess you need a redirection on you visualforce page you have many ways to reach this one of them would be put this script in your page.

<apex:page standardController="DummyObject__c">
<script type="text/javascript">
   window.location = "http://www.salesforce.com/xxx/example/"
</script>
</apex:page>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top