Original User: evtguyIn the sample you refer to, this portion of the code:infoTemplate: new InfoTemplate("Block: ${BLOCK}", "${*}"),
is what populates the infoWindow and the "${*}" specifies that the infoWindow will show all fields specified in the outFields list. What you need to do is tweak this to just list the fields you want. Something like this:infoTemplate: new InfoTemplate("Block: ${BLOCK}", "Facility: ${FACILITY}<br>Products: ${PRODUCTS}<br>Status: ${STATUS}"),
outFields: ["BLOCK","FACILITY","PRODUCTS"]
Don't forget to specify the field name that's used in the title of the infoWindow (I couldn't figure it out from what you posted). I think this will get you what you want.Steve