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
1973 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
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
0
issamd
over 10 years ago
A simple and effective solution, thank you!
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
dhavals966
over 9 years ago
Its working fine but I have one problem. I have set to have minimum 3 characters to display suggestion and when I enter 1-2 characters it shows "No results found" message. This I guess added by the component itself automatically, I was thinking if we can hide this message when we limit number of characters manually in the component. Please let me know if its possible.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel