I have two variables of list type,
local!selecteddata: { id:1, name:test1, id:4,name:test4}.
local!data:{id:1,name:test1,
id:2,name:test2,
id2,name:test3,
id4,name:test4
}
if I update the "name" fields of local!selecteddata,How do I index local!data and update the field "name" for ids : 1 and 4 . Any help is appreciated
Discussion posts and replies are publicly visible
a!localVariables( local!Y: { a!map(id: 1, name: "test5"), a!map(id: 4, name: "test6") }, local!X: { a!map(id: 1, name: "test1"), a!map(id: 2, name: "test2"), a!map(id: 3, name: "test3"), a!map(id: 4, name: "test4") }, a!update( local!X, wherecontains(local!Y.id, local!X.id), local!Y ) ) ------------------------------------------------------------- a!localVariables( local!Y: { a!map(id: 1, name: "test7"), a!map(id: 4, name: "test8") }, local!X: { a!map(id: 1, name: "test1"), a!map(id: 2, name: "test2"), a!map(id: 3, name: "test3"), a!map(id: 4, name: "test4") }, a!update( local!X, "name", a!update( local!X.name, wherecontains(local!Y.id, local!X.id), local!Y.name ) ) )
It can be achieved multiple ways. use Wherecontains() to index based on id
thanks for the reply, is there a way , I can do this inside a button. my requirement is upon button click , I need to update.
you can use the same what Venkat has mentioned in the buttons saveInto parameter.
a!save(target: local!data,value: a!update())
tried this, but local!data lost rows with id 2 and id 4, because we are saving only two updated rows into this variable)