Skip to main content

I have a Visualforce page with a form that shows all the help text at once when someone is submitting responses. Anyone know what the cause or fix is?

Visualforce help text glitch @* Salesforce Developers *

8 respostas
  1. 17 de abr. de 2023, 06:54

    @Regina Hodge To avoid all the field tooltips showing up simultaneously upon submission of the form, you can use the following solutions:

    1 Remove the tooltips from the form fields - This can be done by removing or disabling the tooltip functionality from the form fields, so that they won't pop up on submission of the form.

    2 Use a custom submit button - Instead of using the default submit button, you can create a custom submit button and add JavaScript code to handle the form submission. This way, you can control the behavior of the form after it's been submitted.

    3 Validate the form fields before submission - By adding client-side validation to the form, you can ensure that all the required fields are filled in and that the data entered is valid before the form is submitted. This will prevent any tooltips from popping up on submission due to invalid data.

    4 Use a different form submission method - If you're using the default Visualforce form submission method, you can try using a different method such as Ajax or REST to submit the form. This may help avoid any conflicts or issues that are causing the tooltips to pop up on submission.

0/9000