Skip to main content
Community site session details

Community site session details

Session Id :
Power Pages - Design & Build
Unanswered

Entity forms custom validation

(0) ShareShare
ReportReport
Posted on by 649 Super User 2025 Season 2
I have an entity form and create a radio button selection at the bottom where if the user has selected "I do not accept" the form should not be submitted regardless if the form has passed the validation. 

This is my code below: 

dataprocessingradio is something that is inserted via jQuery which is not part of the form fields. 

the code below submits the form even if I have selected "I do not accept" as long as the form has been validated correctly... how could I do this?
 
// Prevent submission if no radio selected
    $("#InsertButton").on("click", function (e) {
        e.preventDefault();
        e.stopImmediatePropagation();

        const selectedRadio = $("input[name='dataProcessingRadio']:checked").val();

        if (!selectedRadio) {
            alert("Please confirm ....");
            return false;
        }

        if (selectedRadio === "2") {
            alert("We respect your decision. However,....");
            return false;
        }

        // If validation passes, manually submit the form
        $(this).closest("form").submit();
    });
entirely a newb in javascript, jquery so im confused
Categories:
  • KevinGador Profile Picture
    649 Super User 2025 Season 2 on at
    Entity forms custom validation
    managed to solve this by completely abandoning the idea instead I just put up a modal at the load of the page

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Pages

#1
Lucas001 Profile Picture

Lucas001 60 Super User 2025 Season 2

#2
Fubar Profile Picture

Fubar 55 Super User 2025 Season 2

#3
surya narayanan Profile Picture

surya narayanan 35

Featured topics