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
5 replies
Subscribers
7 subscribers
Views
3147 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
I have a grid using a!gridField which contains a link column. For some of the ro
shaoyongw
over 9 years ago
I have a grid using a!gridField which contains a link column. For some of the rows, the link needs to be hidden. I tried to use following code but the broswer crashs when testing.
a!gridTextColumn(
label: "Name",
data: ri!data,
links: apply(fn(x), ri!data)
)
fn(x): if(isnull(x), null, a!dynamicLink(...))
Instead, if set the link value directly it will work. Any suggestion?
a!gridTextColumn(
label: "Name",
data: ri!data,
links: {null, a!dynamicLink(...), ...}
)
OriginalPostID-139989
OriginalPostID-139989
Discussion posts and replies are publicly visible
Parents
0
rupeshc
over 9 years ago
Hi shaoyongw ,try using {} instead of "null". Forexample: fn(x): if(isnull(x), {}, a!dynamicLink(...))
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
rupeshc
over 9 years ago
Hi shaoyongw ,try using {} instead of "null". Forexample: fn(x): if(isnull(x), {}, a!dynamicLink(...))
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data