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
14 replies
Subscribers
7 subscribers
Views
5790 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
In a Interface I want to show a Paging Grid with multiple columns and multiple r
anilkumark
over 9 years ago
In a Interface I want to show a Paging Grid with multiple columns and multiple rows(data should fetch from database). Now I have to select some of the records from the grid and on clicking on a button/image, the selected records should move into another Grid(assume Grid2) in the same Interface. Can any one provide the code.
OriginalPostID-149370
OriginalPostID-149370
Discussion posts and replies are publicly visible
0
Tim
Certified Lead Developer
over 9 years ago
You have a minor syntax error in your declaration of local!gridSelection. Remove the "local!" from the pagingInfo attribute.
local!gridSelection: a!gridSelection(
pagingInfo: a!pagingInfo(
startIndex: 1,
batchSize: 10,
sort: a!sortInfo(
field: "m_id",
ascending: true
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
anilkumark
over 9 years ago
@clarke. I remove "local!", still throwing same error. "Expression evaluation error at function a!gridField : The Target is missing."
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Tim
Certified Lead Developer
over 9 years ago
You are also missing a "," after your input for the "identifiers" attribute of the gridField which seems to be upsetting your value.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
anilkumark
over 9 years ago
Thanks Clarke. Its working fine.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
<