Hi,
I have a Json file built with a name's list of Excel.
The structure of my file is then:
{"c2dictionary":true,
data:{
"nom_01":NOM Prénom",
"nom_02":NOM Prénom",
...
}}
I would like to cherge this file to complete my WebStorage.
It would be necessary not to destroy the others datas of my WebStorage.
I try that:
Event ------------------------------------------ Action
Syst. On start of layout ------------------- Ajax Request liste.json (tag "a")
Ajax On "a" completed WebStorage -- Set local storage from JSON string AJAX.LastData
Mouse On any clic---------------------------Text1 Set text to AJAX.LastData
---------------------------------------------------Text2 Set text to WebStorage.AsJSON
The text1 show realy the good list of names, but not the text2 wiich say me that the data charged is empty: ({"c2dictionary":true,"data":{}})
How to do ?
Thanks