I am trying to create search bar that searches through json data from a server and presents the results in a ListView. The data is in the form of an array. For Example
ProductList: [
{ ProductCode: "10012010",
ProductName: "Kell",
ProductGrammage: "120 gm",
ProductBarcode: "890123456789",
ProductCatCode: "40",
ProductCatName: "Packed Food and Condiments",
ProductSubCode: "4001",
ProductSubCodeName: "Breakfast & Cereals",
ProductMRP: "120",
ProductBBPrice: "115" },
ect...
]
So lets say I type in Kell in the search bar. I want this Kell object to pop up in my list view.