I have an array of objects in javascript. The array is :
[
{ "Name": "A", "Id": "1" , "FID": "1" },
{ "Name": "B", "Id": "2" , "FID": "1" },
{ "Name": "C", "Id": "3" , "FID": "1" },
{ "Name": "D", "Id": "4" , "FID": "1" },
{ "Name": "E", "Id": "5" , "FID": "1" },
]
I am using knockout.js. I want to use select binding to bind this array with select list. So that the select list contains the Name property value of this array in its drop-down. How can i do this ?
You can try this