Custom control and validation messages
Problem:
I have need to create a custom control and I need to know how to display the standard validation messaging with it when it fails validation.
Details:
I had this in my notes from version 6.x years ago but it doesn't work properly in newer versions (currently on 7.4). I suspect it was replaced by something different but I cannot find any stream rule by the name Messages.
<pega:include name="Messages"/>
It renders almost entirely off-screen (or at least off-layout) except a couple pixels of the icon which is below the field and rendered over the next field's label. The validation text is entirely not rendered. Shown here is Customer name which is an OOTB control for reference, Account Number (DDA) which is the custom control with the issue, and Card Number to illustrate the issue with rendering.
Here's the snippet of code from the control where this occurs.
Problem:
I have need to create a custom control and I need to know how to display the standard validation messaging with it when it fails validation.
Details:
I had this in my notes from version 6.x years ago but it doesn't work properly in newer versions (currently on 7.4). I suspect it was replaced by something different but I cannot find any stream rule by the name Messages.
<pega:include name="Messages"/>
It renders almost entirely off-screen (or at least off-layout) except a couple pixels of the icon which is below the field and rendered over the next field's label. The validation text is entirely not rendered. Shown here is Customer name which is an OOTB control for reference, Account Number (DDA) which is the custom control with the issue, and Card Number to illustrate the issue with rendering.
Here's the snippet of code from the control where this occurs.
<SPAN nowrap>
<input
<pega:include name="Attributes" />
<pega:include name="ClientValidation"/>
id="myFieldID"
type=text
data-ctl='["TextInput"]'
/>
<pega:include name="Messages"/>
</SPAN>
***Edited by Moderator Marissa to update platform capability tags****