|
POST
|
All- Has anyone noticed that at 1.2 the origin attribute table needs to be open in order for related records to display in the attribute table div? I've tested with a both 1-1 and 1-M relates. Am I missing something? Thanks- David
... View more
08-19-2015
01:29 PM
|
0
|
2
|
3306
|
|
POST
|
Hmm, doesn't really look like I can. I did some initial searching in \\server\apps\3\jimu.js\dijit\Popup.js and PopupConfig.js files and I would say that all formatting is coming in on the fly via esriRequest and url params . . . thanks
... View more
08-14-2015
01:15 PM
|
0
|
0
|
2947
|
|
POST
|
Thanks Robert - One more quick question. We deal with alot of poorly formatted attributes and so in nearly all of my jsapi apps I've got various formatting functions set up e.g if I want to return acreage out of my shape_area field, I'll apply a convertSQft function like: convertSqFt = function(evt) {
if (!isNaN(parseFloat(evt))) {
} else {
if (evt.charAt(0) == "<") {
var acVal = evt.substring((evt.indexOf(">") + 1),evt.lastIndexOf("<"));
evt = acVal;
}
}
var acreage = evt * 0.000023;
return number.format(acreage, {
places : 2
});
}; and pass that into my popop template descrioption option value: var plyParcels = new PopupTemplate({
title : "GIS Parcel Info",
description : "<b>Account Number:</b> {ACCOUNT}" + "<br><b>Acreage:</b> {Shape_Area:convertSqFt}" +
"<br><b><a target='_blank' href=http://www.sc-pa.com/testsearch/parcel/{ACCOUNT}>Account Details</a></b>"
}); if you wanted to make these kind of changes, what module or modules would you attempt to apply this kind of formatting? Thanks- David
... View more
08-14-2015
10:47 AM
|
0
|
1
|
2947
|
|
POST
|
Robert - can you direct me as to which MapManager.js file should be modified? I too need to get at my popups for various config changes and I see that I can access MapManager from the \\client\stemapp\jimu.js folder or from the \\server\apps\3\jimu.js folder? Thanks- David
... View more
08-14-2015
09:54 AM
|
0
|
4
|
2947
|
|
POST
|
Hi All- Searched for this but can't seem to find any reference. Does anyone know if we can submit WAB deployed apps to the JS Web Optimizer? Or perhaps the better question is: By removing various unused widgets, is a deployed WAB fully optimized? Is there more we can do in the dev environment to further optimize? Thanks- David
... View more
08-13-2015
11:00 AM
|
1
|
0
|
2934
|
|
POST
|
Thanks Robert, that's it. I must of had a blindspot
... View more
08-11-2015
08:16 AM
|
0
|
0
|
2485
|
|
POST
|
Hi Rebecca - I'm sure this answer is posted somewhere but thus far have been unable to locate it. I didn't get started with WAB unit 1.1 so I'm wondering if you know how I go about updating my current 1.1 developer edtion to 1.2 upon it's release? Is it treated as a new install / workspace where I then migrate in any customizations? Thanks- David
... View more
08-11-2015
08:00 AM
|
0
|
2
|
2485
|
|
POST
|
Really? I don't know what to say. My caching has been very stable at 10.3 since applying the ArcGIS 10.3 for Server Map Consumption patch and subsequently at 10.3.1. I have not had to change to drive-letter paths, and even my maplex-engine basemap service is caching well.
... View more
07-30-2015
09:28 AM
|
0
|
0
|
2001
|
|
POST
|
Hi Robert - In finally beginning my task to migrate my large flex-based app, I was just thinking along the lines of a data extract widget as well. On the otherhand, if there is a geoprocessing task widget that I haven't come across yet, that obviously would work as well.... Thanks-- David
... View more
07-30-2015
09:06 AM
|
0
|
2
|
1855
|
|
POST
|
Thanks Thejus, yes helpful for sure. Yes, we've been sort of trial and error on this for some time. Anytime we set an info or popup window as part of the map or search constructer it completely hoses the attribute inspector and it's functionality. You are likely correct in we will have create a specific AI.
... View more
07-24-2015
11:54 AM
|
0
|
0
|
366
|
|
POST
|
Hi Thejus - @michael Stranovsky and I work together - hence my reply to you... yes I want to get our project up in a fiddle and will let you know when - thanks. One thing we did try and thus far has produced mixed results it adding a click event to our edit layer that calls a tolerance function to set up an extent, like what I did here function pointToExtent (mapMain, point, toleranceInPixel) {
var pixelWidth = mapMain.extent.getWidth() / mapMain.width;
var toleranceInMapCoords = toleranceInPixel * pixelWidth;
return new Extent(point.x - toleranceInMapCoords,
point.y - toleranceInMapCoords,
point.x + toleranceInMapCoords,
point.y + toleranceInMapCoords,
mapMain.spatialReference);
}
lyrAddresses.on('click', function (event) { //mapMain
console.log("im here");
var query = new Query();
query.geometry = pointToExtent(mapMain, event.mapPoint, 10);
var deferred = lyrAddresses.selectFeatures(query, //featurelayer
FeatureLayer.SELECTION_NEW);
//mapMain.infoWindow.setFeatures([deferred]);
//mapMain.infoWindow.show(event.mapPoint);
}); The thinking being that an extent has to be accessed in order for the popup to know that there is more than one feature -- but I don't know. As soon as I interact with the search dijit and try to go back to the edit tools no paging occurs- David
... View more
07-24-2015
10:51 AM
|
0
|
2
|
2828
|
|
POST
|
Sure thing. We're doing something similar so if/when we get something working I'll post back-
... View more
07-24-2015
09:35 AM
|
0
|
0
|
992
|
|
POST
|
Michael, Thejus - I am experiencing the same problem. If you go to the jsapi sample at: Editor widget with simple toolbar | ArcGIS API for JavaScript and perform a selection on more than one feature using the edit toolbar selection tool>open attribute inspector, only the first-selected features' attributes are populated in the attribute inspector with no paging controls. Does the attribute inspector need to be instancicated seperatly from the editor widget so that paging controls will display? If so, do we have to calll in attribute inspector events to move to a next feature? Any help is appreciated- David
... View more
07-20-2015
10:51 AM
|
0
|
0
|
2828
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-27-2026 01:27 PM | |
| 2 | 03-25-2026 06:29 AM | |
| 2 | 03-04-2026 11:14 AM | |
| 1 | 02-26-2026 09:46 AM | |
| 1 | 10-30-2025 11:25 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|