List of Dictionary - 3 items Dictionary icon:"arrow-circle-o-left"(Text) action:26(Number (Integer)) Dictionary icon:"sitemap"(Text) action:25(Number (Integer)) Dictionary icon:"check-circle-o"(Text) action:28(Number (Integer))
As i want to remove second item from dictionary what should i do
Discussion posts and replies are publicly visible
Hi Klaus34, you can use the function remove() and select the index that you want to delete, example, remove(local!array,2)
a!localVariables( local!map: { { icon: "arrow-circle-o-left", action: 26 }, { icon: "sitemap", action: 25 }, { icon: "acheck-circle-o", action: 28 } }, remove( local!map,2) )