So I really like the one you posted:https://github.com/DavidSpriggs/ConfigurableViewerJSAPICreated by David Briggs of ESRI (hopefully he Googles his name)I just wish instead of the Draw widget on the sidebar it was an editor. (Or both!)I'd change it myself, but I'm new to Javascript and the OO method he uses confuses me.--------------I do have a question though. I edited the Config.js file to include my services.For example:operationalLayers: [{
type: "feature",
url: "http://xxxxxx.com/arcgis/rest/services/xxxxx/xxxxxxx/0",
options: {
id: "Cable",
title: "Cable",
opacity: 1.0,
visible: true,
infoTemplate: new esri.InfoTemplate("Attributes", "${*}"),
mode: esri.layers.FeatureLayer.MODE_SNAPSHOT
}}]
Now from what I've looked up and understand, the line:infoTemplate: new esri.InfoTemplate("Attributes", "${*}"),
Should show all attributes for the feature when it's clicked.But it's only showing 1 or 2 of the attributes when there are many more.Am I not correctly understanding what "${*}" is doing?I would like to list ALL the attributes.Thanks in advance.