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
8 subscribers
Views
4130 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
I have a editable grid with 3 columns: a id, question, grade. I need the id col
mikec
over 9 years ago
I have a editable grid with 3 columns: a id, question, grade. I need the id column to save off that value but I want to hide it from view to all users. How can I hide this column?
OriginalPostID-140506
OriginalPostID-140506
Discussion posts and replies are publicly visible
Parents
0
ankita0004
A Score Level 1
over 6 years ago
Hi
You can save this id using another field which is required like grade.
you have to use this code into the saveInto parameter of grade dropdown
In apply Components:
saveInto:{
a!save(ri!selectedIds[ri!index],ri!item[ri!index].id)
}
In foreach loop
saveInto:{
a!save(ri!selectedIds[fv!index],ri!item[fv!index].id)
}
Where ri!items is complete which have 3 fields id, question and grade
ri!index is the index of row for editable grid
ri!selectedId is the field in which we want to store id.
Thanks
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
ankita0004
A Score Level 1
over 6 years ago
Hi
You can save this id using another field which is required like grade.
you have to use this code into the saveInto parameter of grade dropdown
In apply Components:
saveInto:{
a!save(ri!selectedIds[ri!index],ri!item[ri!index].id)
}
In foreach loop
saveInto:{
a!save(ri!selectedIds[fv!index],ri!item[fv!index].id)
}
Where ri!items is complete which have 3 fields id, question and grade
ri!index is the index of row for editable grid
ri!selectedId is the field in which we want to store id.
Thanks
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data