Hi @Dandrews2
In the JS activity I suppose you update your data with the xtk:session.Write method. Can you check the schema of the data you want to update please ?
The "filed" you try to update could be declared as an element and not an attribute.
In this case, you have to update it with a sub element and not a simple string / integer / boolean :
//E4X way, with XML notation
xtk.session.Write(<mySchema xtkschema="cus:mySchema" ...>
<subElement>MY NEW DATA</subElement>
</mySchema>);
//JXON way, with JSON notation
xtk.session.Write({
mySchema :
{ xtkschema : "cus:mySchema" ...
subElement : { $ : "MY NEW DATA" }
}
});
Hope this could help
Cedric