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
4132 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
shafaly
over 6 years ago
If your use case is you have value in id and question column and user select grade from dropdown so for which row user selected grade you want to save id of that particular row then you don't have to show id to users, you can use this code in saveInto of dropdown field.
a!save(ri!SelectedIds,tointeger(index(index(local!Items,where(not(apply(isnull(_),local!Items.grade))),{}),"id",{})))
here SelectedIds is the variable of type list of number(integer) where you want to save selected ids.
Items is the type of cdt where you have these three columns.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
shafaly
over 6 years ago
If your use case is you have value in id and question column and user select grade from dropdown so for which row user selected grade you want to save id of that particular row then you don't have to show id to users, you can use this code in saveInto of dropdown field.
a!save(ri!SelectedIds,tointeger(index(index(local!Items,where(not(apply(isnull(_),local!Items.grade))),{}),"id",{})))
here SelectedIds is the variable of type list of number(integer) where you want to save selected ids.
Items is the type of cdt where you have these three columns.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data