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!
Solved! Go to Solution.
Hi @Jayant2 ,
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.
Hi @Jayant2 ,
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.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
196 | |
176 | |
62 | |
34 | |
32 |
User | Count |
---|---|
343 | |
271 | |
112 | |
75 | |
59 |