|
POST
|
no-one have any ideas about this, our clock is ticking and I need to get my app working in IE10 It must be something I have added recently that has caused this as earlier versions of my app worked in IE10 - but there's about 3 months of changes I'll have to pick through - if anyone has any pointers it would be appreciated.
... View more
07-02-2013
11:10 PM
|
0
|
0
|
3118
|
|
POST
|
Hi I'm getting a similar issue - just been told we are finally planning on our XP - Win 7 upgrade so testing my app on IE10 I get exception in animation handler for:onEnd
RangeError: Array length must be a finite positive integer I'm using 3.5 of the API and ArcGIS server 10.1 SP1 so all up to date Cheers ACM
... View more
06-28-2013
01:08 AM
|
0
|
0
|
3118
|
|
POST
|
Hi I thought I'd have a play with geocoders in the hope of adding the widget to my javascrip api app. However I'm having all sorts of issues. Using the UK Postcode template from above (many thanks) - I can get one set up, but it only does a full match, so it will return a match for "EX10 8HL" but not for "EX10 8" So, I set a even simpler one up, just wards, again it returns only if te full string is matched, and then only one hit, so a search for "Ward" returns only one result, despite all the wards having this string in its name. The whole thing looks very promising, I'd love to offer some sort of fuzzyness to my browser based users, but simply cannot get to grips with this at all. Cheers ACM
... View more
06-27-2013
01:25 AM
|
0
|
0
|
2378
|
|
POST
|
Having hit this issue again and searching the forums I found my original post (above), but also another thread that answers it http://forums.arcgis.com/threads/43001-Overview-Map-Attributes?highlight=ovwHighlight So just adding this post here to point anyone else to the answer. -
... View more
06-21-2013
01:10 AM
|
0
|
0
|
698
|
|
POST
|
Doh! Just checked and the latest IS 10.1.1 - version numbers yet again changed.
... View more
06-17-2013
02:07 AM
|
0
|
0
|
971
|
|
POST
|
According to http://www.esri.com/software/arcgis/arcgismobile/system-requirements ArcGIS for Windowsn Mobile 3.1 (although as "Update version number is listed as a feature for Windows Phone app http://resources.arcgis.com/en/help/windows-phone-app/#/What_s_new/01s900000023000000/ expect yet ANOTHER renumbering to take place soon) states it works on Windows 8 Having said that I am having serious issues with it re-projecting a tiled basemap, which works fine with exactly the same software on XP and Server 2008 machines? I really get the impression that Esri are not committed to this product.
... View more
06-17-2013
01:57 AM
|
0
|
0
|
971
|
|
POST
|
Hi I currently have my multi layer info window open in a DojoFloating pane, which shows, in one screen all the results from all the layers. It can get quite big. In ArcIMS the equivalent (that I am mimicking ) is in a real new window and can be moved anywhere, so for us with 2 (or more) monitors it can be moved way off the map. All dojo stuff, by their nature are part of the main window - they are not real new windows. Anyone any ideas how I can open a new window and then populate it with my results. The only thought I have had so far is to dump the contents to local storage (as this is an intranet project I know I can use Local storage) then retrieve it as the new window opens. Any other thoughts? ACM
... View more
06-11-2013
07:22 AM
|
0
|
0
|
620
|
|
POST
|
Sorted!! Using the above post I looked at my code - Tim's suggestion is spot on. I have a dojo Combo box that allows font selection. So it had options like "12pt" and "16pt" - as a combo box, these were the values returned. I simply changed these to "12" and "16" etc so at creation time this is what was set. And it all works - with no need to use the "ioArgs.content.Web_Map_as_JSON.replace" lines at all. So, I think the bug gets re-worded to say that when textmarkers are created with "pt" in them they fail to get printed, but work fine without "pt" in the initial creation ACM PS added PDf generated from jsapi application - all text added without "pt" in command and no further adjustments.
... View more
06-10-2013
05:06 AM
|
0
|
0
|
5816
|
|
POST
|
Finally got to look at this and did what was suggested -= a bounce back if the zoomextent was a large difference from the original dojo.connect(map, "onZoomEnd", catchZoom2);
dojo.connect(map, "onZoomStart", catchZoom); Hook the map to some functions in the init function, then //catch bad zooms//get map extent at the start of the zoom
function catchZoom(extent,zoomFactor) {
oldExtent = new esri.geometry.Extent();
oldExtent = extent;
}
//if the zoomfactor is too big, assume it is an error and go back to the original
function catchZoom2(extent, zoomFactor) {
console.debug(zoomFactor)
if (zoomFactor > 400) {
map.setExtent(startExtent);
} If anyone has a more elegant way it would be nice.
... View more
06-07-2013
04:47 AM
|
0
|
0
|
1382
|
|
POST
|
I think this issue was down to a bad de-installation of previous versions, so not important - I restored the previous snapshot (it a Virtual PC) and will try again, Cheers ACM
... View more
06-07-2013
01:00 AM
|
0
|
0
|
903
|
|
POST
|
Old thread, but I have the same issue on ANY Python script - I've just struggled updating a PC from 9.3.1 to 10.1 - I had to do a manual de-installation.
... View more
06-06-2013
06:37 AM
|
0
|
0
|
903
|
|
POST
|
I know. Well, this is what I use until the JS team will add functionality. I am not worried about the unnecessary firing. The client will handle it... Oren Ah, sorry, didn't look close enough at what you were doing, clever that (what you are doing, not me not looking) Working on it now, many thanks ACM
... View more
06-04-2013
01:00 AM
|
0
|
0
|
1414
|
|
POST
|
Thanks, but alas, that fires off every time you click onto the overview map in order to navigate using it. Does the Hide button have its own events I wonder? ACM
... View more
06-04-2013
12:32 AM
|
0
|
0
|
1414
|
|
POST
|
If we're giving it a kicking, can I add the fact that the vertical scroll bars on the right panel often fail to load in a timely manner - or indeed at all, leaving it impossible to actually use these pages - I find that when this happens a cache clear is required.
... View more
05-31-2013
07:40 AM
|
0
|
0
|
1455
|
|
POST
|
Thanks for that - we do use 10.1, but alas the dirtying of the query still produced the same error. Changing the query to a simple text based comparison does work (so, refval = "1234/abc" works) Cheers Acm
... View more
05-29-2013
12:30 AM
|
0
|
1
|
1389
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-28-2025 01:14 AM | |
| 1 | 12-01-2023 06:07 AM | |
| 2 | 11-29-2024 04:32 AM | |
| 1 | 05-28-2024 12:50 AM | |
| 1 | 03-16-2023 06:46 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|