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
6 replies
Subscribers
7 subscribers
Views
2236 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
Hi, I am unable to save my data in the editable grid into the PV. Can
Will Teoh
over 9 years ago
Hi,
I am unable to save my data in the editable grid into the PV. Can you help me out please?
In the interface code:
a!gridLayout(
headerCells: {
a!gridLayoutHeaderCell(label: "Cost Element"),
a!gridLayoutHeaderCell(label: "Project Manager"),
a!gridLayoutHeaderCell(label: "Split %", align: "RIGHT"),
a!gridLayoutHeaderCell(label: "Category Code"),
/* For the "Remove" column */
a!gridLayoutHeaderCell(label: "")
},
/* Only needed when some columns need to be narrow */
columnConfigs: {
a!gridLayoutColumnConfig(width: "DISTRIBUTE"),
a!gridLayoutColumnConfig(width: "DISTRIBUTE"),
a!gridLayoutColumnConfig(width: "NARROW"),
a!gridLayoutColumnConfig(width: "DISTRIBUTE"),
a!gridLayoutColumnConfig(width: "NARROW")
},
rows: a!applyComponents(
function: rule!TRAVEL_SAIL_costElementItemRow(
items: local!costElements,
index: _,
...
OriginalPostID-184398
OriginalPostID-184398
Discussion posts and replies are publicly visible
Parents
0
vimalkumars
Certified Lead Developer
over 9 years ago
Can you verify whether the variable - ri!travelCostElementsList_cdt has grid values by testing in the interface.
Also as per the below code, grid values are stored in the local variable - local!costElements. We have to store the values in local!costElemets to ri!travelCostElementsList_cdt before submitting the form.
a!applyComponents(
function: rule!TRAVEL_SAIL_costElementItemRow(
items: local!costElements,
index: _,
itemsToken: local!costElementsList
),
....)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
vimalkumars
Certified Lead Developer
over 9 years ago
Can you verify whether the variable - ri!travelCostElementsList_cdt has grid values by testing in the interface.
Also as per the below code, grid values are stored in the local variable - local!costElements. We have to store the values in local!costElemets to ri!travelCostElementsList_cdt before submitting the form.
a!applyComponents(
function: rule!TRAVEL_SAIL_costElementItemRow(
items: local!costElements,
index: _,
itemsToken: local!costElementsList
),
....)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data