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
SurenderSurender 

Calling VF page when the tab gets loaded -- Urgent!!

Hi,

 

When the tab gets loaded, how can we call A VisualForce page (with out any actions from side bar).

 

I am able to achieve this by having custom link in the Home tab(in the Side bar) and when the user clicks on the link it is calling that VisualForce page.

 

But our requirement to achive this without a link click in the sidebar and that VisualForce page has to be called in the Wide Area.

 

Your feedback is appeciated.

SriniBobTechnologySriniBobTechnology

You can create VF tab, which will call the VF on clicking the Tab, setup-->App setup-->Create -->Tab --> 3rd section Visualforce Tabs

Navatar_DbSupNavatar_DbSup

Hi,

 

If want to load a VF page. Follow the below step

 

Create a tab of the VF page 

setup->create->tab-> new tab-> visualforce tab->follow the instruction for of creating the tab.

 

set the visual force tab as a default loding tab.

 

Setup->create->apps->click on Edit link of your app->set your VF page tab as default landing tab 

 

 Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

ajmerakavitaajmerakavita

You can create HTML Component , and using IFRAME you can display your VF page content on Home Page.

Eg -

 

<DIV><IFRAME style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" src="/apex/VFPageName" frameBorder=0 width="100%" height=1000></IFRAME></DIV>