Form - Missing Info Message Display

Sharon Parry asked on October 15, 2019 03:21

Hi all,

Is there a way to position the missing information message for a form at the BOTTOM of the form near the submit button, rather than at the top?

Thanks.

Recent Answers


David te Kloese answered on October 15, 2019 11:30

I've not seen this without custom coding either using Javascript to move/clone the message or custom develop your own Bizzform Web Part/Widget, as the layout does not have an option to show the error summary.

0 votesVote for this answer Mark as a Correct answer

Sharon Parry answered on October 15, 2019 19:57

Ok, thanks David.

0 votesVote for this answer Mark as a Correct answer

Peter Mogilnitski answered on October 16, 2019 19:53 (last edited on October 16, 2019 19:54)

generate custom layout for your form and add this code at the bottom:

<script type="text/javascript">
$cmsj(document).ready(function() { 
    $cmsj(".ErrorLabel").appendTo(".bottomMessage")
  })
</script>

<div class="bottomMessage">&nbsp;</div>

$cmsj - points to built in kentico Jquery.

0 votesVote for this answer Mark as a Correct answer

Sharon Parry answered on October 16, 2019 20:00

That's great! Thanks Peter.

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.