|
POST
|
Make the OBJECTID field uniqueidentifier, NOT NULL to create a unique ObjectID in SQL.
... View more
06-29-2017
10:44 AM
|
0
|
2
|
2307
|
|
POST
|
Megan, The reason why the data is being shown on sql but not on geodatabase is: The geodatabase honors objectid as a unique, not null integer field to uniquely identify rows in tables. However, SQL does not, even though a field very identical to OBJECTID is created. Below is the caution provided by esri. Caution: Since most ArcGIS for Desktop functionality requires that the ObjectID be unique, you must be sure that ObjectID values are not duplicated when working directly with the database outside of ArcGIS. For example, when creating views with a one-to-many relationship, there is the possibility that ObjectIDs will be duplicated. This causes inconsistent behavior in ArcGIS for Desktop functionality. One way to fix the issue is: by creating a GlobalID and treating it as a unique, not null integer.
... View more
06-29-2017
09:18 AM
|
1
|
4
|
2307
|
|
POST
|
Check this link. playground You can replace the current url with the image that symbolizes a vector. You will need the module "esri/symbols/PictureMarkerSymbol".
... View more
06-22-2017
09:29 AM
|
0
|
0
|
1577
|
|
POST
|
Hi Malla, try Resizing the infoWindow after the loop. infoWindow.resize(210, 150);
... View more
06-22-2017
09:23 AM
|
0
|
0
|
2210
|
|
POST
|
Is there any quickest and easiest way to get rid of underscore in field values in popup? For example, field: value pair is FeatureName : Hello_World. I want to make it Hello World. I am using popup template and fieldInfos. {fieldName: "Feature_Type", visible: true, label: "Major Feature"}
... View more
06-13-2017
01:06 PM
|
0
|
2
|
1710
|
|
POST
|
I am trying to display basemaps gallery as dropdowns. The dropdown menu displays a bunch of dropdowns. If I click them, the basemap changes. js: var dynamicLayer = new ArcGISDynamicMapServiceLayer("https://RESTURL/MapServer");
map.addLayers([dynamicLayer]);
map.on('load', function () {
createBasemapGallery();
});
function createBasemapGallery() {
//console.log("Basemap");
var basemapGallery = new BasemapGallery({
showArcGISBasemaps: true,
map: map
});
basemapGallery.startup();
connect.connect(basemapGallery, 'onLoad', function () {
array.forEach(basemapGallery.basemaps, function (dynamicLayer) {
registry.byId("basemapMenu").addChild(new MenuItem({
label: dynamicLayer.title,
onClick: function () {
basemapGallery.select(dynamicLayer.id);
}
}));
});
});
} html: <div style="position:absolute; right:320px; top:145px; z-Index:1;">
<button id="dropdownButton" label="---Select a Basemap---" data-dojo-type="dijit/form/DropDownButton">
<div data-dojo-type="dijit/Menu" id="basemapMenu">
</div>
</button>
</div>
... View more
06-02-2017
09:48 AM
|
0
|
2
|
1772
|
|
POST
|
Andrew, I do not use Web App Builder. Esri has a few repos on web app builder in github. Ask this question on geonet as a new question. Hopefully, someone will help you. Good luck.
... View more
05-31-2017
06:25 AM
|
0
|
0
|
2111
|
|
POST
|
Andrew, Check this one out. dijit/layout/TabContainer — The Dojo Toolkit - Reference Guide You should be able to follow the Tabcontainer samples and achieve what you are trying to achieve. The samples are well documented. Let me know if you need additional help.
... View more
05-30-2017
12:15 PM
|
1
|
2
|
2111
|
|
POST
|
Andrew, I got the tabbed pop-ups working. What are you trying to display in the tabs of the tabcontainer?
... View more
05-30-2017
12:03 PM
|
0
|
5
|
2111
|
|
POST
|
Abdellah, Can you share your codes so that it would be easier for us to find out what is possibly wrong with your codes?
... View more
05-22-2017
11:19 AM
|
0
|
1
|
803
|
|
POST
|
I use WebStorm editor for writing my codes. How can I enable WebStorm to auto complete, auto suggest based on the ArcGIS API for JavaScript 3.x ?
... View more
05-15-2017
12:29 PM
|
0
|
0
|
811
|
|
POST
|
Make sure your field names follow the convention of geodatabase. I think you have a space in front of the field names in excel. Try no spacing in front of the field names. Also, follow the convention of geodatabase when loading the data from excel. For example, Field Name would be Field_Name, no reserved words, no spacing in front of the field name and in between two words in the field name.
... View more
04-24-2017
01:30 PM
|
0
|
0
|
1969
|
|
POST
|
Hi Terry, Check out this blog. It could be one or the combination of the following reasons. Troubleshooting Slow Performance in ArcGIS Desktop | Support Services Blog
... View more
04-24-2017
07:09 AM
|
0
|
0
|
1948
|
|
POST
|
Thank you Robert. Looks like I can get it done with simple html and javascript.
... View more
04-06-2017
07:38 AM
|
0
|
0
|
937
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-02-2017 12:54 PM | |
| 1 | 08-11-2017 12:04 PM | |
| 1 | 07-20-2017 06:45 AM | |
| 1 | 12-27-2016 11:28 AM | |
| 1 | 01-09-2018 07:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:25 AM
|