html.radioWarning

description

Defines the error message that gets displayed if no radio button of an obligatory group is checked when calling warn. If you use %name% in the string it will be replaced with the element’s name.

syntax

getHtml(ELEMENT_NAME).radioWarning(message)
  • message :

example(s)


@newHtml("intro", "example_intro.html")
@    .checkboxWarning("It is highly recommended that you check the '%name%' box before continuing")
@    .inputWarning("We would like you to type some text in these fields")
$    .radioWarning("Please consider selecting an option for '%name%'")
@    .print()
@,
@newButton("I have completed the form")
@    .print()
@    .wait()
@    .remove()
@,
@getHtml("intro")
@    .warn()
@,
@newButton("Continue")
@    .print()
@    .wait()
  • Will print the custom warning messages on any missing obligatory field after clicking “I have completed the form.”