BLOG
|
Hi LocalMaps folks,
this looks really good and mature. Congrats to such a great product.
Greetings to all,
Jan
... View more
10-18-2024
12:16 AM
|
1
|
0
|
62
|
POST
|
Are you able to install ArcGIS Experience Builder Developer edition on different machine? If yes, you can try copy paste node-modules folders for both /client and /server, then just npm start for both.
... View more
05-30-2024
12:10 AM
|
0
|
0
|
661
|
POST
|
Hi @wadsonmakari Have you changed the url of jsapi as is stated in the instructions at https://developers.arcgis.com/experience-builder/guide/install-guide/#offline-install ? Another 'not-approved' approach is to take folders /client/node_modules and /server/node_modules from the successfully installed online instance of Experience Builder DE and just place these folders into appropriate folders at offline environment with Experience Builder. Basically this approach completely skip the process of installation (npm install --offline). Then you can just npm start and it should work.
... View more
05-16-2024
01:07 AM
|
0
|
0
|
1063
|
POST
|
Hi @TonghuiMing, as far as I know, The AdvancedSelect is still missing the method onSearchInputChanged which is really important while using with API calls as @WalaZargouni mentioned. Are there any plans to implement this method? https://developers.arcgis.com/experience-builder/storybook/?path=/story/components-jimu-ui-index-advancedselect--dynamic-data
... View more
04-30-2024
12:33 AM
|
1
|
1
|
1126
|
POST
|
Hi @Damian I see your point now. I am not sure how to achieve this with out of the box widgets. I can imagine it would be quite easy customization to the List widget but you would need to use Experience Builder Developer edition, adn then host the app on your webserver or hsot the customized widget on Portal for ArcGIS. Maybe others can sugegst some better approach.
... View more
04-09-2024
02:51 AM
|
0
|
0
|
533
|
POST
|
Hi @Damian would it be possible for you to completely omit the Filter widget and use just the List widget and its filtering message action? See my samle below
... View more
04-09-2024
02:14 AM
|
0
|
1
|
537
|
POST
|
Hi @DéveloppeurP what error is in brwoser console? I would contact Technical Support.
... View more
04-08-2024
01:26 AM
|
0
|
0
|
309
|
POST
|
Hello @Damian these two Questions could be helpful, chek them out https://community.esri.com/t5/arcgis-experience-builder-questions/overwrite-default-map-filter/m-p/1269114 https://community.esri.com/t5/arcgis-experience-builder-questions/filter-widget-default-view-no-objects/m-p/1381416
... View more
04-08-2024
01:17 AM
|
0
|
1
|
559
|
POST
|
Hi @DéveloppeurP You can deploy custom ArcGIS Experience Builder (ExB) widget into Portal, starting with the version ArcGIS Enterprise (AGE) v11.0. While deploying this custom ExB widget you need to be aligned with the ExB version contained in Portal. Specifialy, if you deploy to AGE v11.0 -> ExB v1.8 and so on. See the matrix at this link https://developers.arcgis.com/experience-builder/guide/release-versions/ My guess is that you are trying to deploy incompatible versions -> for instance ExB v1.14 custom widget into AGE 1.11.
... View more
04-03-2024
05:52 AM
|
0
|
0
|
341
|
POST
|
Hi @WalaZargouni a few versions back it was not possible with the componenet AdvancedSelect ... I believe it is still the same in version 1.14. We kind of hacked the simple component Select to provide the functionality you described. See the sample below <Select {...restProps} placeholder={placeHolder} value={activeId} buttonProps={buttonProps} autoWidth onChange={onSelectChange}> <Option header> <TextInput type={'text'} size={'sm'} style= {{ marginLeft: '-0.5rem', marginRight: '-0.5rem' }} placeholder={searchTextPlaceholder} onChange={(event) => { onSearchInputChanged(event.target.value); }} prefix={<span style={{ marginRight: '2px' }}><SearchOutlined size="m" color={'black'} /></span>} /> </Option> {items.map(it => { return ( <Option value={it.id} key={it.id} disabled={!it.id && it.id !== 0} > {it.value} </Option> ); })} </Select>
... View more
03-26-2024
06:56 AM
|
0
|
0
|
1496
|
POST
|
Hi @PartyPelican I had the same issues. I believe the problem is with different format how the color is saved in config and the format which the component ColorPicker is using. <ColorPicker color={props.config.graphicsColor} width={30} height={30} showArrow={true} placement={'bottom'} disableAlpha={false} onChange={(value) => { onMapGraphicsColorChanged(value); }} /> const onMapGraphicsColorChanged = (value: string): void => { // color in array format needs to be transformed to rgba(255,255,255, 1) format which is readable by ColorPicker component const rgbaString = rgbaToRgbaString(value); props.onSettingChange({ id: props.id, config: { ...props.config, graphicsColor: rgbaString } }); }; Initial value in config.json "graphicsColor": "rgba(0, 255, 255, 0.65)",
... View more
03-21-2024
01:29 AM
|
2
|
0
|
723
|
POST
|
There is a possible workaround which is not approved but it could help. FW: 'In case it helps we ran into this problem as well and got it working by starting with a clean npm-cache directory and running just "npm install" on a computer with internet access. Then taking the npm-cache directory and using that instead of the one currently available for download,'
... View more
02-26-2024
11:13 PM
|
1
|
3
|
1531
|
POST
|
Hi @CliveSwan I can observe the same thing installing ArcGIS Experience Builder Developer Edition 1.13 offline. I have found out there is a BUG-000164137 reported. I believe this BUG is reported only internally so probably you cannot see it publicly. Hopefully the v1.14 will have this BUG resolved. v1.14 should come in the end of the March 2024. Greetings, Jan
... View more
02-26-2024
11:09 PM
|
0
|
2
|
1531
|
POST
|
Hello @LiveHus, regarding the widgets which are present in WAB and not yet present in EXB, you can check out this link: https://community.esri.com/t5/arcgis-experience-builder-documents/functionality-matrix-for-web-appbuilder-and/ta-p/1113766 Regarding the widget to use GP Service, it is not currently present in EXB, but it should be in the end of this year.
... View more
06-12-2023
12:26 AM
|
1
|
1
|
1802
|
IDEA
|
Hi @PARDDeptAdministrator , have you tried to use Survey widget in ArcGIS Experience Builder? It allows to connect very powerfull Survey123 forms. https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/survey-widget.htm https://www.esri.com/arcgis-blog/products/experience-builder/real-time/using-experience-builder-and-survey123-to-pass-attributes-and-geometry-from-one-layer-to-another/ Jan
... View more
04-25-2023
12:50 AM
|
0
|
0
|
745
|
Title | Kudos | Posted |
---|---|---|
1 | 10-18-2024 12:16 AM | |
1 | 02-26-2024 11:13 PM | |
1 | 04-30-2024 12:33 AM | |
2 | 03-21-2024 01:29 AM | |
1 | 06-12-2023 12:26 AM |
Online Status |
Offline
|
Date Last Visited |
Monday
|