|
POST
|
Nice idea but the splash screen is essentially a modal dialog. So you can't interact with the map. I want mine to be able to interact with the map. And also, have a close button like the placeholder widget. Thanks for the idea though.
... View more
02-23-2017
04:02 PM
|
0
|
4
|
2215
|
|
POST
|
I'm trying to force my 'placeholder' type of widget to be centered on the map when it opens. There's some documentation out there for creating a new panel (https://developers.arcgis.com/web-appbuilder/sample-code/create-a-new-panel.htm). It that the only way to get my widget centered?
... View more
02-23-2017
03:29 PM
|
0
|
6
|
2925
|
|
POST
|
I'd like to add a dijit/ConfirmDialog prior to closing a widget of type dockable-panel. So I would like to overwrite the onClose event. Thoughts on how to do this. If I add the ConfirmDialog to onClose(), its too late to close it. Has anyone done this? I can probably hide the close button and add my own. Examples of this?
... View more
02-23-2017
09:51 AM
|
0
|
4
|
2025
|
|
POST
|
Mine is actually a "Header Controller" type of widget. But I just did the following which worked: div[settingid=<MyWidgetSetttingId>] { display: none; } Thanks for the idea. I'm still thinking about pursuing option 1 above. In my mind, I think if you setup a widget, it should be designed to run independently of other widgets. So still deciding whether mine would ever run that way. Thanks again.
... View more
02-13-2017
07:43 AM
|
1
|
0
|
1577
|
|
POST
|
I've setup 2 widgets (Web AppBuilder Developer Edition) that need to communicate with each other (ie. Widget1 and Widget2). I only want 1 open at a time. Widget1 is set to openAtStart. Then, when I select a point on the map, I want Widget1 to close, and Widget2 to open. Then, when I close Widget2, I want Widget1 to reopen. I pretty much have this concept working now, except I have a button for Widget2, so you can basically open it, separately from Widget1 (which I don't want). So what I want to do is have only 1 button to control all of this flow.. I'm trying to figure out the best way to do this. So some options I've come up with are as follows: 1. Option1: Place all code in 1 widget and control the showing and hiding of the content using code. I'm not a huge fan of this, as it ends up placing separation of functionality within 1 widget... But I can use multiple dijits here to handle the code and separate the code that way.. So maybe option 1 is a good way to handle this. 2. Option2: Figure out how to not display my second button associated with Widget2. I'm not sure how to do this, and maybe it's not good practice? 3. Option3: Is there possibly a theme out there that supports what I'm trying to accomplish, or should I build a new theme for this? Thoughts on how to best handle this? Thanks.
... View more
02-10-2017
09:30 AM
|
0
|
5
|
2270
|
|
POST
|
Sorry, not really possible as our GDB is intranet-based. I found a workaround so I'm good. Just thinking that if this is indeed a bug, it should be fixed, or at least documented for what the expected format is for related tables. And please keep in mind too, that I've had absolutely no problem using applyEdits for adds and updates. It's only problematic for deletes. Thanks.
... View more
01-31-2017
05:38 PM
|
0
|
0
|
863
|
|
POST
|
Thejus: Are you saying that the applyEdits is actually working for related tables? Since the related table isn't graphics or features, I don't see how you can truly create a graphic for a related table (setup with relationship classes), unless its a related feature. I used the Rest API and just sent a string of Object Ids for the related table.
... View more
01-31-2017
09:47 AM
|
0
|
2
|
4456
|
|
POST
|
I think Angga is correct. The applyEdits for deletes on related tables seems to not work the expected way. I believe there might be a bug in ESRI's way of handling deletes on related tables. From the rest service, it is expecting a comma-delimited set of Object Ids.. I worked around this using an esriRequest with a post, and was able to make it work that way. FYI: I am using the ESRI JS API Version 3.18.
... View more
01-31-2017
09:21 AM
|
0
|
4
|
4456
|
|
POST
|
I have a ClusterLayer defined in the map using ESRI's sample at Point clustering | ArcGIS API for JavaScript I am attempting to remove the ClusterLayer from the map using map.removeLayer(myClusterLayer); When this is executed, the internal _unsetMap() function in ClusterLayer is executed. It returns an error from the ESRI graphicsLayer code stating that this._div is null. I wonder why this occurs? Thoughts?
... View more
04-13-2016
09:39 AM
|
0
|
0
|
2079
|
|
POST
|
Hello Bill and Yue: I am not using the Feature Service for the purpose of performing an Identify. I am wishing to send a query directly to the Feature Service and have it query several of the layers within the Feature Service (each with unique where clauses), and provide back some results. The beauty of this method is that all of the work is done on the server-side, and does not require multiple "deferred" QueryTask requests to the server to capture the data I require. I realize that I could send these asynchronous requests to each layer individually to obtain my results, but this method is much slower then the intended request. I would think something like this would be quite helpful in the API, no? Karen
... View more
03-30-2016
10:36 AM
|
0
|
0
|
1276
|
|
POST
|
I am wondering if there's a queryTask for an entire Feature Service (not just layers within a Feature Service)? I am trying to duplicate the functionality located at this site: ArcGIS REST API The main component is that I need to setup the layerDefs parameters. I cannot see anything located in the ArcGIS JavaScript API for this, with the exception of executing an esriRequest. Am I missing something?
... View more
03-29-2016
03:13 PM
|
0
|
4
|
3123
|
|
POST
|
I'm using an ESRI Popup Dijit for my Identify functionality. But we're noticing that scrolling does not work on IPads. There's another fix in another thread here: Problems with popup window on touch devices related to setting an overflow-y style. Just wondering if there's any other fixes for this? I'm trying this with the 3.15 version of the API. The fix described isn't working well. Does anyone know why this is not working?
... View more
01-12-2016
02:20 PM
|
0
|
0
|
2364
|
|
POST
|
I'm running into a problem with InfoWindows. I'm trying to use an InfoWindow that works well on all devices (phones, browsers, tablets). I don't like the mobile infoWidows, as it doesn't work well on browsers. We're using media queries too to properly setup the infowindow. For smartphones, we need it to be 100% map width and map height (take up the whole screen), and for the rest, use the anchor to properly set it. I used the out of box Popup (map.infoWindow), but am having a funky bug on mobile devices where it's not scrolling (to add complexity too, I'm using a different SPA framework, Angular, for my content, and sticking it inside my Popup dijit). Just wondered what other folks out there are using (for InfoWindows on all devices that take advantage of media queries)? Has anyone else seen the scrolling bug? Do Media queries collide with the ESRI dijits? Do I need to use the infoWindow.resize() function or is it OK to let media queries handle this bit?
... View more
12-08-2015
07:10 AM
|
0
|
0
|
2212
|
|
POST
|
The map gets its scales and LOD's from the first basemap added. But I need to override the map's maxScale. The basemap I'm using is set to 9027 for Max Scale, but I need the map's maxScale set to like 70.. Possible? I know I could load the layer that has the lower maxScale first, and then load the other basemap, but I would like to not take the hit on performance.
... View more
11-19-2015
07:19 AM
|
0
|
1
|
3715
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-17-2019 08:31 AM | |
| 1 | 11-21-2017 08:58 AM | |
| 1 | 08-14-2018 01:16 PM | |
| 1 | 02-13-2017 07:43 AM | |
| 2 | 10-11-2018 06:59 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|