我们可以将 Visualforce 页面设为 salesforce 中的主页吗?

发布于 2024-12-25 06:52:00 字数 81 浏览 2 评论 0原文

我想将我的 Visualforce 页面作为我的沙箱中的主页。 那么是否可以将 Visualforce 页面作为 salesforce 中的主页。

i want to make my visualforce page as home page in my sandbox.
So is it possible to make visualforce page as home page in salesforce.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

偏爱你一生 2025-01-01 06:52:00

我能想到两件事可能对你有用。

您可以在主页布局中嵌入 Visualforce 页面

同样,您可以使用一些 javascript 创建一个 HTML 区域主页组件,从主页重定向到 Visualforce 页面:

<script language="JavaScript">
window.location.replace("/apex/YourVfPage");
<script>

I can think of two things that might work for you.

You can embed a Visualforce Page in your home page layout

Similarly, you could create an HTML area home page component with a little javascript that redirects from the home page to the visualforce page:

<script language="JavaScript">
window.location.replace("/apex/YourVfPage");
<script>
夜唯美灬不弃 2025-01-01 06:52:00

我不这么认为。
您可以做的是,构建一个 Visualforce 页面,为其创建一个选项卡,将该选项卡添加到您的应用程序并将其设置为默认选项卡。

I don't think so.
What you can do is, build a visualforce page, create a tab for that, add that tab to your application and make that as the default tab.

Smile简单爱 2025-01-01 06:52:00

如上所述 - 您可以尝试的一件事如下:

  1. 创建 Visualforce 页面
  2. 为该 Visualforce 页面创建一个名为“Home”(或任何您想要的名称)的自定义选项卡
  3. 从列表中删除默认的“Home”选项卡用户看到的选项卡(可以通过自定义选项卡和配置文件编辑来完成)
  4. 将新的“主页”选项卡添加到用户并使其成为默认选项卡

我相信这应该可以完成您想要做的事情。

As was mentioned above - one thing you can try is the following:

  1. Create the visualforce page
  2. Create a custom tab for that visualforce page called "Home" (or whatever you want to call it)
  3. Remove the default "Home" tab from the list of tabs a user sees (can be done via customizing the tabs & profile editing)
  4. Add your new Home tab to the user and make it their default tab

I believe that should accomplish what you're wanting to do.

作妖 2025-01-01 06:52:00

不,我们无法将 Visualforce 页面设为 Lightning 经典中的主页,但可以将其设为主页。

或者

您想通过单击选项卡来显示 Visualforce 页面,可以使用 Visalforce 选项卡。

No We can't make visualforce page as home page in classic in Lightning it is possible to make it as a home page.

or

you want to by click on the tab to display the visualforce page is possible using visalforce tab.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文