I have the following javascript object which I use as an enum.
Object {Group1: 0, Group2: 1, Group3: 2, Group4: 3, Group5: 4}
Id like to be able to use it to create check boxes or drop downs using knockout templates basicly i need these values to be observable.
Ive tried adding the object to an observable array but it doesnt work. can any one help?