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
5 replies
Subscribers
8 subscribers
Views
2995 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
TO display link in a Grid
sandeepg138
over 8 years ago
Hello,
I am able to display link in a paging grid, But I am looking to implement the link in the pattern below:
Data 1 Data 2
Count: 3 Count: 4
Where I want to implement link only 3 and 4 and not for Count:, In current scenario it is being displayed link for complete Count: 3 and Count: 4.
Let me know if there is way to implement above scenario.
Regards,
Sandeep.
OriginalPostID-246413
Discussion posts and replies are publicly visible
Parents
0
TJ
A Score Level 2
over 8 years ago
a!sectionLayout(
firstColumnContents:{a!gridLayout(
headerCells:{
a!gridLayoutHeaderCell(label:"Label 1"),
a!gridLayoutHeaderCell(label:"Label 2")
},
rows:{
a!gridRowLayout(
contents:{
a!richTextDisplayField(
value:{a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(value:"abc"))}
),
a!richTextDisplayField(
value:{a!richTextItem(text:"Count"),a!richTextItem(text:"4",link:a!dynamicLink(value:"abc"))}
)
}
)
}
)}
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
TJ
A Score Level 2
over 8 years ago
a!sectionLayout(
firstColumnContents:{a!gridLayout(
headerCells:{
a!gridLayoutHeaderCell(label:"Label 1"),
a!gridLayoutHeaderCell(label:"Label 2")
},
rows:{
a!gridRowLayout(
contents:{
a!richTextDisplayField(
value:{a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(value:"abc"))}
),
a!richTextDisplayField(
value:{a!richTextItem(text:"Count"),a!richTextItem(text:"4",link:a!dynamicLink(value:"abc"))}
)
}
)
}
)}
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data