B K
B K

Reputation: 359

Windows 8 javascript app: How to list all settings stored by the app

I am currently trying to build my 1st Windows 8 app in javascript. It's basically an alarmclock app with multiple alarms.

I wanted to store these alarms in roamingSettings, and then retrieve them. However I don't see a way how to retrieve a list of all settings stored without knowing their key. Examples such as this work with the key name available:

var value = roamingSettings.values["exampleSetting"];

I am going for something else: I want a list of all setings, because I am saving an unknown number of items. How to achieve this?

Thanks a lot. Boris.

Upvotes: 0

Views: 56

Answers (1)

SLaks
SLaks

Reputation: 888107

You can use a for in loop to iterate over all keys in the object:

for (var key in roamingSettings.values)

Upvotes: 0

Related Questions