Crestron Components Lib - Showcase App

ch5-textinput: required attribute

usage of required attribute
<form>
  <ch5-textinput
    type="text"
    required
    feedbackmode="submit"
  >
  </ch5-textinput>
  <input type="submit" value="Submit the form"/>
</form>
usage of required attribute with no feedbackMode="submit"
Result: the attribute required will not be applied on the input element
<ch5-textinput
  type="text"
  required
>
</ch5-textinput>