|
POST
|
Use the next build as described here. npm install @Anonymous User/core@next
... View more
04-13-2021
12:22 PM
|
0
|
0
|
10523
|
|
POST
|
This is something that would be better suited for CIMSymbol, as it can be defined based on attributes. This blog post covers some of this in more detail.
... View more
04-13-2021
11:32 AM
|
1
|
1
|
5590
|
|
POST
|
With the next build, you don't need to copy the assets by default anymore. If you have that in there, you can remove it and it will save on files copied and processed. This will cut down a solid 20MB+ of static asset files on disk in the build. Other than that, it wouldn't be a memory leak issue with the API.
... View more
04-13-2021
11:28 AM
|
0
|
3
|
10564
|
|
POST
|
You can use css resize. on the container for the table. https://developer.mozilla.org/en-US/docs/Web/CSS/resize If you want something more configurable for height and width, you'll need to build it or find a third-party UI library for it.
... View more
04-13-2021
07:59 AM
|
0
|
0
|
1967
|
|
POST
|
This looks like a typing issue. You want to type the reference as HTMLDivElement and everything should work as expected. ReneRubalcava_0-1617907394787.png
... View more
04-08-2021
11:43 AM
|
1
|
0
|
735
|
|
POST
|
You can select the rows using the object ids of the source layer. https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html#selectRows // select all rows
const oids = await featureTable.layer.queryObjectIds();
featureTable.selectRows(oids);
... View more
04-02-2021
03:02 PM
|
0
|
1
|
2407
|
|
POST
|
If you are looking to move graphics around the map, the easiest way is to use the SketchViewModel, it can manage that for you. https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch-SketchViewModel.html
... View more
04-02-2021
02:59 PM
|
0
|
0
|
4237
|
|
POST
|
You'll need to enable CORS at the server level to fix this. How you do that can vary based on the type of server.
... View more
04-02-2021
08:23 AM
|
0
|
0
|
4375
|
|
POST
|
Check all the network requests to that domain and verify that the token is appended to the URL. Maybe a token source URL permission issue?
... View more
04-01-2021
08:19 AM
|
0
|
2
|
4387
|
|
POST
|
There is probably a request being made to the root of the service to check for capabilities. You can make the request interceptor url to the root of the server. {
urls: "https://services.slip.wa.gov.au"
}
... View more
03-31-2021
08:30 AM
|
1
|
1
|
13051
|
|
POST
|
The ref.current from useRef can be Element or undefined. Try to do something like this. if (mapRef.current) {
// mapRef.current typing should now be inferred as HTMLDivElement
} If all else fails you can say "as HTMLDivElement" You can find framework samples on github now. https://github.com/Esri/jsapi-resources/tree/master/esm-samples Using the ESM build of @Anonymous User/core doesn't really require framework specific guides anymore. You just integrate it pretty much how you would any third-party library.
... View more
03-26-2021
01:02 PM
|
1
|
3
|
3116
|
|
POST
|
We strip any URL parameters added to a layer URL to better manage params we need to use for queries and stuff. This is by design. The preferred way is IdentityManager for tokens, but you can use the requestInterceptors for this. esriConfig.request.interceptors.push({
// set the `urls` property to the URL of the FeatureLayer so that this
// interceptor only applies to requests made to the FeatureLayer URL
urls: "https://services6.arcgis.com/ExtdhXSbhHKK7FFW/arcgis/rest/services/Related_Table_2/FeatureServer/0",
// use the BeforeInterceptorCallback to add token to query
before: function(params) {
params.requestOptions.query = params.requestOptions.query || {};
params.requestOptions.query.token = "my-token";
},
}); You can double check that its appended by checking the network request. ReneRubalcava_0-1616788367716.png Hope that helps.
... View more
03-26-2021
12:53 PM
|
2
|
4
|
13082
|
|
POST
|
There are a couple of options, but if you simply want to append it to the URL, you can use the before() requestInterceptor https://developers.arcgis.com/javascript/latest/api-reference/esri-config.html#RequestInterceptor
... View more
03-26-2021
08:24 AM
|
0
|
6
|
13091
|
|
POST
|
I usually see this happen when you don't have the CSS for the API added to your page, can you verify your CSS version matches the API version.
... View more
03-22-2021
08:52 AM
|
1
|
1
|
4526
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 3 weeks ago | |
| 1 | 07-17-2026 10:17 AM | |
| 2 | 07-22-2026 11:24 AM | |
| 2 | 05-19-2026 02:12 PM | |
| 1 | 04-24-2026 11:01 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|