Contents
Is it possible to resize a VF page?
Yes it is possible. See the Update – Success at the bottom: Resizing the VF Page within a Page Layout is not possible though there is an option on the Page Layout that allows scrollbars for the embedded content. Another option is to (1) make the “embedded” Visualforce Page a Visualforce Component, and (2) write a VF Page similar to:
How to add Visualforce pages to page layout?
If you see a page like this in your org, you should have the option enabled. This StandardController implementation also enables you to use the Visualforce Page in Detail Buttons. There may be other attributes.
Is it possible to resize a Visualforce page?
Yes it is possible. @AmatorVitae’s answer will certainly work if you can set up your visualforce page to use apex:details. To resize a visualforce page with a more complex structure, you can do so with some cross domain scripting. In my answer here, I go into detail about how to accomplish this.
What’s the best way to speed up Visualforce pages?
Showing data from objects and fields (e.g. {!acc.Name}) is up to 3x slower than storing the Account Name in a different variable and use {!accountName}. Using is up to 3x slower than because it will evaluate Field Level Security.
How to dynamically resize Visualforce section in page layout?
To resize a visualforce page with a more complex structure, you can do so with some cross domain scripting. In my answer here, I go into detail about how to accomplish this. Add a custom link section to your sidebar that executes some javascript stored in a static resource.
How does the Entity Framework affect the performance?
The following are other considerations that may affect the performance of Entity Framework applications. Because queries can be resource intensive, consider at what point in your code and on what computer a query is executed. When you create an ObjectQuery or LINQ query, the query may not be executed immediately.