I'm trying to call attribute variables of the current feature in my HTML. This worked as the contents of an infoWindow in the JS file: ...."<button class='button' id='infoWindowNEXT' onClick='executeZoomToNext(\"${nextpt}\");' >NEXT </button>"+....But now I need to redesign and have the contents of the infoWindow display in a side panel. In the HTML, I can't get the attribute to come through due to syntax:....<button class='button' id='infoWindowNEXT' onClick='executeZoomToNext("${nextpt}");' >NEXT </button>....What am I missing?