
Hi All,
I am currently in the process to build a request form for my organization and i want to plug in some validations in the form. My data source is SharePoint Custom List. Below are my requirements:
Thanks in advance!
Hi @Anonymous ,
Character Validation - on the OnChange of the Text box
If(
Len(Self.Text)>15,
Notify("Only 15 Characters allowed",NotificationType.Error)
)
On the DisplayMode of the button
If(
Len(YourTextBoxName.Text)>15,
DisplayMode.Disabled,
DisplayMode.Edit
)
For the second one, set the IsEditable of the Date Picker to false.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.