paragraphfield in an interface is considering enters, tabs and spaces only as a value

Hi All,

I have a paragraph field (* Required field) in an interface. When I input Enters or Spaces or Tabs only and no other characters it is consider as a value and not firing the validation error. For user it looks like empty values and validation didn't fired. Need a validation so that Enters or Spaces or Tabs only are not considered as va[lues.

a!paragraphField(
.....


validations: ???

......
)

  Discussion posts and replies are publicly visible

Parents Reply
  • The input to the paragraph field is a enter key value. Since its not a visible text the field should through validation error.

    For your validation expression

    if(a!isNullOrEmpty(fn!trim(local!X)),"Please enter value","")

    if the value of local!X is a enter key value the validation is still not firing. I want the validation error if any keyboard keys input to this paragraphfield is not a visible text to the user ex: enter key or space key or tab key inputs.

Children