Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
3 replies
Subscribers
8 subscribers
Views
1976 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
AI and Rules
Hello, I am making custom picker fields, running Appian 7.5. Is it p
issamd
over 10 years ago
Hello,
I am making custom picker fields, running Appian 7.5. Is it possible to have a minimum number of characters that must be entered before the picker initiates?
Thanks....
OriginalPostID-114942
OriginalPostID-114942
Discussion posts and replies are publicly visible
Parents
0
elizabeth.epstein
over 10 years ago
I have implemented this by adding an if-statement to the suggest function that returns an empty data subset if the filter input string <= MIN_CHARS. In this example, MIN_CHARS = 3.
if(len(ri!filter)<3,
type!DataSubset(data:{},identifiers:{}),
[Rest of Suggest function here]
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
elizabeth.epstein
over 10 years ago
I have implemented this by adding an if-statement to the suggest function that returns an empty data subset if the filter input string <= MIN_CHARS. In this example, MIN_CHARS = 3.
if(len(ri!filter)<3,
type!DataSubset(data:{},identifiers:{}),
[Rest of Suggest function here]
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data