|
POST
|
Stefano, Can I open another widget for read other data (from other tables, numeric no features classe) of my object? This is possible but, it will take A LOT of custom code on your part.
... View more
09-07-2010
04:14 AM
|
0
|
0
|
611
|
|
POST
|
Josh, A 404 Error just means that it can not find the page. So it is looking for http://74.116.50.125/FlexView/StreetView.html and it can not find it. So the obvious question is do you have a virtual directory named FlexView and the file StreetView.html in it on the web server that has the IP Address of 74.116.50.125? That question is almost 98% rhetorical because that is what the error is say that there is not one. If you are on your development machine (different IP) and are trying to test this widget than you either need to change the url or you need to actually add a 'FleView' virtual directory to 74.116.50.125 and then copy StreetView.html into it.
... View more
09-07-2010
04:10 AM
|
0
|
0
|
693
|
|
POST
|
Stefano, Change to this:
if (fld.toUpperCase() == queryTitleField.toUpperCase())
{
title = featureSet.fieldAliases[fld] + ":" + value;
if (!title)
title = widgetTitle;
}
// eliminato l'ele altrimenti non funzionava il link items
// here i've remove else condition...............
if (fld.toUpperCase() == queryLinkField.toUpperCase())
{
link = value;
}
else
{
if ((fld.toUpperCase() != queryTitleField.toUpperCase()) &&
(fld.toUpperCase() != "SHAPE_LENGTH")&& (fld.toUpperCase() != "SHAPE_AREA"))
{
content += featureSet.fieldAliases[fld] + ": " + value + "\n";
}
}
... View more
09-06-2010
05:07 AM
|
0
|
0
|
611
|
|
POST
|
Dan, Sounds like you want to look at the map.staticLayer
... View more
09-03-2010
03:41 PM
|
0
|
0
|
693
|
|
POST
|
JR, Yep has the section that we have to put flex app in called configurable leads to some questioning of "Can I download the source for this?". The configurable apps section has to options one is show what you have done and can do with the Flex API and another option is to actually attach code and have it downloaded. My site code is not available. It is highly customized and specific for my data and the asp.net web services that it consumes. I have shared many portions of my site in these forums though and will continue to do so when the FlexViewer is released in version 2.1.
... View more
09-03-2010
03:36 PM
|
0
|
0
|
1209
|
|
POST
|
JR, OK, I did not notice that you were missing the layer designation from your url in the config file. you have: http://gistest/ArcGIS/rest/services/Parcels/MapServer you need: http://gistest/ArcGIS/rest/services/Parcels/MapServer/0 Where 0 is the number of the layer that you will be searching. This number comes from your REST Services directory.
... View more
09-03-2010
02:00 PM
|
0
|
0
|
1209
|
|
POST
|
Darryl, What that thread is talking about is re-projecting the locator results not your basemaps.
... View more
09-03-2010
09:34 AM
|
0
|
0
|
1797
|
|
POST
|
Rene, That's fine with me. Keep op the good work on the FlexMapTools.
... View more
09-03-2010
09:32 AM
|
0
|
0
|
2012
|
|
POST
|
Chad, The issue with having to type exactly what you are searching for is an easy fix just replace <expression>NAME = '[value]'</expression> with <expression>NAME LIKE '%[value]%'</expression> Next your list of fields needs to include all the fields you are going to use separated by a comma. So add the hyperlink field into your list of fields. In regards to widgets that you can download from the code gallery you have to ensure they are developed for the particular FlexViewer version that you are working with. So the identify widget on the code gallery is a 1.x version and will not work for the FlexViewer2.0.
... View more
09-03-2010
08:00 AM
|
0
|
0
|
1807
|
|
POST
|
Darryl, You are correct you need to use one or the other. The issue you are having is with spatial reference. The Parcel Notification Widget is hard coded in several spot to a particular spatial reference. Look here, read thought the entire thread. http://forums.esri.com/Thread.asp?c=158&f=2421&t=284009&mc=39#msgid882710
... View more
09-03-2010
06:04 AM
|
0
|
0
|
1797
|
|
POST
|
Jorge, Because the code contained my work and Melissa's, I was not going to post a new entry to the code gallery. You should as you say post what you have done to merge the code together here for others that are using the 1.x SFV still, to save them time and heartache. Make sure you add some tags to the thread for easier searching.
... View more
09-03-2010
05:57 AM
|
0
|
0
|
1774
|
|
POST
|
Joshua, You do not have a group layer in the MXD that has all of the layers in it do you? How about going to your REST Service directory for say the basemaps mapservice by typing http://publicgis/PublicGISserver/rest/services/Basemap/MapServer in your browser and then taking a screen shot and attaching that to this thread.
... View more
09-02-2010
05:50 PM
|
0
|
0
|
2707
|
|
POST
|
Jeff, Here is the code commented with my additions I did not add much code at all.
... View more
09-02-2010
05:40 PM
|
0
|
0
|
604
|
|
POST
|
Chad, OK, lets start with a question... Do you know the REST Admin page is and how to get to it? Basically if you make a change to a map service you have to clear the REST cache before you will see the change. http://localhost/arcgis/rest/admin Next for those map services that you have that certain layers are not showing up is that simply because they have a scale dependency setup on them? When you go to your REST Services directory and click on one of your map services at the top there will be View In: ArcMap ArcGIS Explorer ArcGIS JavaScript Google Earth ArcGIS.com Map press ArcGIS JavaScript and zoom around your map service do those layers show up? 1. I am not sure why your measure is not working 2 and 3. you need to wait another month (without the schedule slipping) and FlexViewer 2.1 will be out and will have these taken care of as far as I have heard.
... View more
09-02-2010
04:48 PM
|
0
|
0
|
1807
|
|
POST
|
Jorge, I not aware of an issue with the minimize and maximize. Now that the FlexViewer2.0 is out I don't plan on putting any more work into this code though. As far as I remember the preminwidth and height had to do with capturing the resized width and height of the widget so when it was re maximized it would not default back to it original size pre-resizing.
... View more
09-02-2010
04:37 PM
|
0
|
0
|
1774
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 17 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|