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
2992 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
0
TJ
A Score Level 2
over 8 years ago
You can use a!gridLayout()- editable grid and use rich text field. In its value use following-
{a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(...))}
Hope it helps
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
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
0
sandeepg138
over 8 years ago
Hi Tajinder,
The scenario in which I am trying to implement this, is for calendar report, and for each date, below the date I am looking to display Count.
Let me check if editable grid will work for Calendar type report.
In case it works, then you are saying the data should be in below pattern:
a!textField(label: Monday,
value: {a!richTextItem(text:"Count"),a!richTextItem(text:"3",link:a!dynamicLink(...))})
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
chandu
A Score Level 2
over 8 years ago
If I understand your requirement correctly, Whey can't you take the count as label in the paging grid, and add the link only to values this makes sense like
count
-------
3
4
where now 3 and 4 will displays as links.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Conor Cahill
Certified Lead Developer
over 8 years ago
There's a component on the app market that sounds like it would be good for your use case:
www.appian.com/.../
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel