Sorry im confused>?
Im trying to edit my gallery data that is saved as Text back into a dropdown?
Eg i have a dropdown with the items colItems, i view the itemname but i patch the itemcode
ClearCollect(
coltems,
{
Id: 0,
itemcode: "",
itemname: ""
},
{
Id: 1,
itemcode: "A1",
itemname: "TESTNAME"
},
{
Id: 2,
itemcode: "A2",
itemname: "TESTNAME2"
}
)
i collect the dropdown to another collection ill call colAll (with many others)
Collect(
colAll,
{ListItem:Text(dropdown1.Selected.itemcode))
ColAll has yet to be patched back to sharepoint which is a text column,
if i goto the gallery and decide to edit those values i wish to edit them back in a dropdown where i view the itemname again,