You need to sign in to do that
Don't have an account?

Save the Page | one of the section is Visualforce page and rest is standard page.
Hello,
I have a Standard Account page.
I want to replace one of the section by inline visualforce page.
Reason of the visualforce page is, i want to hide certain fields when depending on the picklist value.
My problem is, how is it possible that, when the SAVE button is clicked then the values entered in the inline section and the rest of the values in standard page anre saved together.
thanks for suggestion !
I have a Standard Account page.
I want to replace one of the section by inline visualforce page.
Reason of the visualforce page is, i want to hide certain fields when depending on the picklist value.
My problem is, how is it possible that, when the SAVE button is clicked then the values entered in the inline section and the rest of the values in standard page anre saved together.
thanks for suggestion !
When you click on Save button, the entire page reloads by default, it would in turn refresh the data in the inline vf page as well.
If at all you want to explicitely reload it via code, then have a custom button in place of standard Save and add javascript code to reload parent page.
All Answers
When you click on Save button, the entire page reloads by default, it would in turn refresh the data in the inline vf page as well.
If at all you want to explicitely reload it via code, then have a custom button in place of standard Save and add javascript code to reload parent page.
I dont understand the concept of reload.
If i click on SAVE, i want that the data in the inline VF and the data entered in SAVE are saved automatically.
can you reexplain me ?thanks