Solved! Go to Solution.
var attInspector = new AttributeInspector({ layerInfos:layerInfos }, "attributesDiv"); attInspector.on("attribute-change", function(evt) { var feature = evt.feature; //keep all fields the same from the input feature.attributes[evt.fieldName] = evt.fieldValue; //override the USER_ field with the userId from the credentials object feature.attributes.USER_ = esri.id.credentials[0].userId; //apply attribute update feature.getLayer().applyEdits(null, [feature], null); //refresh to show the 'behind the scenes' edit attInspector.refresh(); });
var attInspector = new AttributeInspector({ layerInfos:layerInfos }, "attributesDiv"); attInspector.on("attribute-change", function(evt) { var feature = evt.feature; //keep all fields the same from the input feature.attributes[evt.fieldName] = evt.fieldValue; //override the USER_ field with the userId from the credentials object feature.attributes.USER_ = esri.id.credentials[0].userId; //apply attribute update feature.getLayer().applyEdits(null, [feature], null); //refresh to show the 'behind the scenes' edit attInspector.refresh(); });
on(editLayer, 'update', function (evt) { populateNumber(); }); }); function populateNumber(){ var input = document.getElementById('dijit_form_TextBox_0'); if(input.value.length == 0) input.value = "Empty";
require([ "esri/map", "esri/tasks/GeometryService", "esri/toolbars/edit", "esri/graphic", "esri/Color", "esri/dijit/HomeButton", "esri/dijit/BasemapGallery", "esri/dijit/LocateButton", "esri/dijit/Geocoder", "esri/layers/ArcGISDynamicMapServiceLayer", "esri/layers/FeatureLayer", "esri/symbols/SimpleMarkerSymbol", "esri/symbols/SimpleLineSymbol", "esri/dijit/editing/Editor", "esri/dijit/editing/TemplatePicker", "esri/config", "dojo/i18n!esri/nls/jsapi", "dojo/on", "dojo/_base/array", "dojo/parser", "dojo/keys", "dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!" ], function( Map, GeometryService, Edit, Graphic, Color, HomeButton, BasemapGallery, LocateButton, Geocoder, ArcGISDynamicMapServiceLayer, FeatureLayer, SimpleMarkerSymbol, SimpleLineSymbol, Editor, TemplatePicker, esriConfig, jsapiBundle, on, arrayUtils, parser, keys ) { parser.parse(); //This service is for development and testing purposes only. We recommend that you create your own geometry service for use within your applications. esriConfig.defaults.geometryService = new GeometryService("http://tasks.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"); map = new Map("map", { basemap: "streets", center: [-98.185272, 26.282376], logo: false, sliderStyle: 'large', zoom: 9, }); var home = new HomeButton({ map: map }, "HomeButton"); home.startup(); geoLocate = new LocateButton({ map: map }, "LocateButton"); geoLocate.startup(); var geocoder = new Geocoder({ arcgisGeocoder: false, autoComplete: true, zoomScale:1000, geocoders: [ { url: "http://maps.lrgvdc911.org:6080/arcgis/rest/services/Public_Outreach/SDE_ADDRESS_POINTS_130917_Create2/GeocodeServer", name: "LRGVDC ", placeholder: "Locate", outFields: "*", singleLineFieldName: "SingleLine" }], map: map }, "search"); geocoder.on('select', function (candidate) { for(var i = 0; i< 20; i++) { var geom = candidate.result.feature.geometry; var symbol = new SimpleMarkerSymbol(); symbol.setStyle(SimpleMarkerSymbol.STYLE_CIRCLE); symbol.setColor(new Color([155, 0, 61, 0.75])); var graphic = new Graphic(geom, symbol); map.graphics.clear(); map.graphics.add(graphic); } }) geocoder.on('clear', function(){ map.graphics.clear(); }) var basemapGallery = new BasemapGallery({ showArcGISBasemaps: true, map: map }, "basemapGallery"); basemapGallery.startup(); basemapGallery.on("error", function(msg) { console.log("basemap gallery error: ", msg); }); map.on("layers-add-result", initEditor); //add boundaries and place names var dynamic = new ArcGISDynamicMapServiceLayer("http://maps.lrgvdc911.org:6080/arcgis/rest/services/STEAR/STEAR_DYNAMIC/MapServer"); map.addLayer(dynamic); var events = new FeatureLayer("http://maps.lrgvdc911.org:6080/arcgis/rest/services/Public_Outreach/EVENTS/FeatureServer/0",{ mode: FeatureLayer.MODE_ONDEMAND, outFields: ['EVENT_NAME', 'date','address', 'psap'] }); map.addLayers([events]); function initEditor(evt) { var templateLayers = arrayUtils.map(evt.layers, function(result){ return result.layer; }); var templatePicker = new TemplatePicker({ featureLayers: templateLayers, grouping: true, rows: "auto", columns: 1 }, "draggable"); templatePicker.startup(); var layers = arrayUtils.map(evt.layers, function(result) { return { featureLayer: result.layer }; }); var settings = { map: map, templatePicker: templatePicker, layerInfos: layers, toolbarVisible: true, createOptions: { polylineDrawTools:[ Editor.CREATE_TOOL_FREEHAND_POLYLINE ], polygonDrawTools: [ Editor.CREATE_TOOL_FREEHAND_POLYGON, Editor.CREATE_TOOL_CIRCLE, Editor.CREATE_TOOL_TRIANGLE, Editor.CREATE_TOOL_RECTANGLE ] }, toolbarOptions: { reshapeVisible: true } }; var params = {settings: settings}; var myEditor = new Editor(params,'editorDiv'); //define snapping options var symbol = new SimpleMarkerSymbol( SimpleMarkerSymbol.STYLE_CROSS, 15, new SimpleLineSymbol( SimpleLineSymbol.STYLE_SOLID, new Color([255, 0, 0, 0.5]), 5 ), null ); map.enableSnapping({ snapPointSymbol: symbol, tolerance: 20, snapKey: keys.ALT }); myEditor.startup(); } });
Hi, Hector. I would love to see that code! I am struggling w/ the same problem as above.
Hey Matthew what code do you need.
I have to code to autoPopulate a field.
Yes, it's the code to auto-populate a field.