|
POST
|
From what I have read and looks like you have confirmed is that related tables are not part of WAB yet. Related tables work on ArcGIS Online and now collector but not WAB. I am sure that will be coming soon.
... View more
02-17-2015
08:09 AM
|
1
|
1
|
2367
|
|
POST
|
Robert, I just tried doing what you suggested and it did not work. I tried adding that line into several spots within the resetInfoWindo function and still no change.
... View more
02-17-2015
07:30 AM
|
0
|
1
|
3943
|
|
POST
|
Andrew, I know what you are saying about the code attachment link you are missing. When I started looking into WAB I watched all the demos and followed the documentation too. They always had a download code link from AGOL. That feature is not currently implemented for the rest of us. If you do need to host it on your own site then I would recommend what Robert has mentioned above to use the Developers version. If you just need to make a few config file changes then you can follow some of the steps listed here No Basemap Choices in WebAppViewer
... View more
02-11-2015
07:25 AM
|
1
|
0
|
1618
|
|
POST
|
I really just want to do it in Web Appbuilder. First off I did some more digging and I have found that this behavior is a result of the esri javascript api and not limited to AGOL or web appbuilder. So I found that there could be two ways around this but not sure how to do either of them in WAB. 1. Use an anchor for the popup like: Popup | API Reference | ArcGIS API for JavaScript anchor: 'bottom-right' as part of : var popup = new Popup({
fillSymbol: fill,
titleInBody: false,
anchor: 'bottom-right'
}, domConstruct.create("div")); The main problem with this is that the popup no longer becomes intelegent to what side of the point to place the popup so it dose not appear off screen. The good side is that the popup box adjusts from the bottom not the center anymore. 2. Use the resize(width, height) method like: Popup | API Reference | ArcGIS API for JavaScript popup.resize(300,200); as part of: var popup = new Popup({
fillSymbol: fill,
titleInBody: false
}, domConstruct.create("div"));
popup.resize(300,200); I like the second option because it still acts smart and does not move the arrows if the size changes. The only down side is if the potential empty space for small popup boxes. Any ideas how to implement either of theses two options or maybe third that I have not come up with? fyi i tested the above code on this esri sample. Popup | ArcGIS API for JavaScript
... View more
02-09-2015
11:31 AM
|
1
|
9
|
3943
|
|
POST
|
I am using web Appbuilder v.1 and when I identify on multiple layers I get a popup box that has an arrow to cycle through the identified features. The problem is that when I click on the arrow to go to the next identified result the size of the box changes and the next arrow moves either up or down. It looks like the box is adjusting its size from the center. So when you go from a big box to a small box the top and bottom condense towards the middle. I also noticed this same behavior on ArcGIS online. Is there a way to only have the bottom slide up or to automatically have a set size so there is no adjustment on the box size as results are cycled through? I have noticed this esri javascript example to kinda work the way I was thinking Popups with related records It has the arrow pointing to the selected feature at the top of the popup. (as a side note it works once you got to the second selected feature)
... View more
02-09-2015
08:40 AM
|
0
|
11
|
13598
|
|
POST
|
I am wondering if there is a way to have the line segment length show up dynamically in the widget and on the map when using the measure widget for Web Appbuilder. I have some users who want to have the text on the map be dynamic as they draw and then once they click on the map to put a vertex down then the line segment text will show up on the map. Also a total length is needed. Tim Witt made a javascript example here: geonet: https://community.esri.com/people/timw1984/blog/2014/07/22/javascript-api-advanced-draw-widget#comments jsfiddle: http://jsfiddle.net/timw1984/4p7d241v/17/embedded/result/ This shows the line segment value but still does not add the text to the map.
... View more
02-05-2015
11:22 AM
|
0
|
3
|
5868
|
|
DOC
|
I downloaded and ran the 1.1.0.3 version and it looks to be working. Thanks.
... View more
02-05-2015
10:21 AM
|
0
|
0
|
9076
|
|
POST
|
Thanks what I thought but I figured I might ask anyway.
... View more
02-05-2015
07:58 AM
|
0
|
1
|
2442
|
|
POST
|
Thanks Robert That works great. I was missing the line in the Widget.js file. To add the score I just added this to the Widget .js: content = response.result.name + "<br> Locator: " + response.result.feature.attributes.Loc_name + "<br> Score: " + response.result.feature.attributes.score; and to the config_Geocoder.json: "outFields": "Loc_name, score" Do you know of a way to show the locator in the auto suggest box at the top?
... View more
02-05-2015
07:37 AM
|
0
|
3
|
2442
|
|
POST
|
I don't know of a bug number but in this post Re: Identify Features Julia Guard said: "Hey all, Thanks for sharing this issue. It has now been identified and logged as a software bug in our system. The bug has been marked as "assigned", which means that the behavior is now under consideration to be fixed in a future release. Hope this helps, Julia Esri Technical Support" Good luck.
... View more
02-05-2015
06:40 AM
|
1
|
0
|
2309
|
|
POST
|
I have a composite locator in the Geocode widget in WAB. I would like to know if there is a way to display what locator was used in the search. Either in the auto populate search bar or in the popup from the result. One of the reasons I think this would be helpful is because on one of my composite locators I am searching based of attributes from features. I have unique IDs that I want to search for but the IDs are only unique for that feature class. So I could and do have IDs that match from different feature classes. As An additional thought I might be nice to have the geocode score as well in the popup. Here is an esri example of what I was thinking Geocode an address | ArcGIS API for JavaScript
... View more
02-04-2015
01:54 PM
|
0
|
11
|
7461
|
|
DOC
|
There are ~35,000 addresses in this data set. I tried this on a another set that has ~35 records.
... View more
02-04-2015
12:13 PM
|
0
|
0
|
9076
|
|
DOC
|
ADDRESSID ( type: esriFieldTypeInteger , alias: AddressID ) It shows up in the drop down as number. ADDRESSID = [value]
... View more
02-04-2015
11:51 AM
|
0
|
0
|
9076
|
|
DOC
|
Robert, I have a map service that I would like to use this search tool on. My field is a number (unique ID) and that is where I am having problems. In the widget set up I ask for values so the user can type in the ID they are looking for. I am running into two problems. First is when I set up the query using unique and I go to search I do not get a text box to search for the ID. Next when I set it up using value and then search, a text box does come up it does not seem to recognize the value. I get the error "value entered is not valid". any ideas on this? I am using WAB release 1 and eSearch 1.1.0.2 Thanks
... View more
02-04-2015
08:48 AM
|
0
|
0
|
9076
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-29-2015 06:36 AM | |
| 1 | 06-30-2015 09:27 AM | |
| 1 | 04-20-2015 10:23 AM | |
| 1 | 06-23-2015 11:01 AM | |
| 1 | 05-19-2015 02:26 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-07-2025
06:26 AM
|