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
+1
person also asked this
people also asked this
Replies
10 replies
Subscribers
10 subscribers
Views
5165 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Data and Records
I am trying to search for records using the text box search feature and no matte
benjamins
over 10 years ago
I am trying to search for records using the text box search feature and no matter what I am searching for, I am getting back no "No records available".
I am searching for values that is in the title and details section of the list view item and I am getting back nothing. Even single letter queries are returning back nothing.
What am I missing?
OriginalPostID-145861
OriginalPostID-145861
Discussion posts and replies are publicly visible
Parents
0
PhilB
A Score Level 1
over 10 years ago
The search box searches only the data used for the id of the list view items and the text used for the title attribute of the list view items. If you want to search on additional fields, they must be used in the title attribute.
There is an (officially unsupported) workaround that allows you to search on fields that aren't displayed as part of the title - just configure the list view items something like the below. This means the fields are used in the title but never actually displayed, so they don't show but become searchable.
a!listViewItem(
title: fn!concat(
rf!title,
if(
false,
concat(
rf!someOtherField1,
rf!someOtherField2
),
""
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
PhilB
A Score Level 1
over 10 years ago
The search box searches only the data used for the id of the list view items and the text used for the title attribute of the list view items. If you want to search on additional fields, they must be used in the title attribute.
There is an (officially unsupported) workaround that allows you to search on fields that aren't displayed as part of the title - just configure the list view items something like the below. This means the fields are used in the title but never actually displayed, so they don't show but become searchable.
a!listViewItem(
title: fn!concat(
rf!title,
if(
false,
concat(
rf!someOtherField1,
rf!someOtherField2
),
""
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data