|
POST
|
Hello, I would like to disable the openAtStart config for a in panel widget on mobile device. I know in config.json there is a mobileLayout section but it seems to not work for widget that are in a widgetPool. This the part of my config.json where the widget is defined: "widgetPool": {
"panel": {
"uri": "themes/LaunchpadTheme/panels/LaunchpadPanel/Panel",
"position": {
"relativeTo": "map"
}
},
"widgets": [
{
"name": "LayerList",
"version": "2.13",
"uri": "widgets/LayerList/Widget",
"config": "configs/LayerList/config_widgets_LayerList_Widget_41.json",
"index": 1,
"id": "widgets_LayerList_Widget_41",
"label": "Liste de toutes les couches",
"openAtStart": true
}
]
} I know I could modify the widget.js to close it automatically if jimuUtils.inMobilieSize(), but that's not what I am trying to achieve. I would like to prevent the openAtStart completely. Thank you!
... View more
10-10-2019
01:02 PM
|
0
|
1
|
927
|
|
POST
|
Hello, I have noticed that the returnUnformattedValues and returnFieldName parameters of the REST API is not working for the Identify on MapServer. Is there something special to enable to make it works? The doc says that it was added in 10.5 I took a screenshot of a request made to the REST endpoint. I have put a red rectangle around an attribute that is part of a domain and the coded value is not returned as expected. Also, the alias of the fields are not returned as expected with returnFieldName parameter set to false;
... View more
10-01-2019
10:55 AM
|
0
|
1
|
1707
|
|
POST
|
Nice and simple! Thank you Carlos for sharing this,
... View more
09-25-2019
07:36 AM
|
0
|
0
|
1475
|
|
POST
|
Hi, I would like to know how I could change the mode of a FeatureLayer in WAB 2.9 or higher. It seems the MODE_AUTO is selected by default, but I would like to use the MODE_SNAPSHOT for a particular layer. Thank you
... View more
09-24-2019
06:10 AM
|
0
|
1
|
772
|
|
POST
|
Hi, I would like to increase the number of features per tile in a FeatureServer hosted on ArcGIS Server. I have followed the tutorial described here: Error: Layer did not draw completely because there are too many features to display in order to increase the maxRecordCountFactor parameter but I got the following error: { "error": { "code": 500, "message": "Service 'PanneEdition'.'FeatureServer' does not exist in folder 'Panne'.", "details": [] } } Then, I browsed to the server directories to see if a .FeatureServer folder exists for that service and there is only a .MapServer folder. However in the REST endpoint I see that the FeatureServer does exists. What can I do from here? Thank you!
... View more
09-23-2019
01:06 PM
|
0
|
0
|
719
|
|
POST
|
Hi, I would like to know if it's possible to show the infoWindow directly fullscreen after a touch event on mobile instead of showing a small popup in which you have to click again to display the info fullscreen. I would like to prevent this popup above and automatically show the fullscreen InfoWindow like below. It's for a 2D WAB application in version 2.13 so the ArcGIS Javascript API version is 3.29. Any suggestion? Thank you!
... View more
09-20-2019
12:46 PM
|
0
|
2
|
1638
|
|
POST
|
Hi, I have an error while trying to automatize the creation of an address locator. Any idea what can be wrong in my code below? I only use 1 data table as reference so why this error? I am using arcpy v10.6 import arcpy
arcpy.env.workspace = "C:\\Script\\Connexions\\connection.sde\\MyDataSet"
configs = {
"IN_ADDRESS_LOCATOR_STYLE": "General-Single Field",
"IN_REFERENCE_DATA": "ReferenceDataFC 'Primary Table'",
"IN_FIELD_MAP": "'Feature ID' ObjectID VISIBLE NONE;'*KeyField' addresse VISIBLE NONE",
"OUT_ADDRESS_LOCATOR": "C:\\Script\\Output\\MyLocator",
"CONFIG_KEYWORD": None
"ENABLE_SUGGESTIONS": "ENABLED"
}
arcpy.CreateAddressLocator_geocoding(
in_address_locator_style = configs["IN_ADDRESS_LOCATOR_STYLE"],
in_reference_data = configs["IN_REFERENCE_DATA"],
in_field_map = configs["IN_FIELD_MAP"],
out_address_locator = configs["LOC"],
config_keyword = configs["CONFIG_KEYWORD"],
enable_suggestions = configs["ENABLE_SUGGESTIONS"]
) I have noticed that if I write "General - Single Field" instead of "General-Single Field" for the in_address_locator_style parameter I got the ERROR 000039: Not enough reference data tables for this style. This is very confusing...
... View more
09-19-2019
07:03 AM
|
0
|
1
|
1348
|
|
POST
|
Hi, I would like to know if there is a way to catch any widget open and close events? Thank you, Maxime
... View more
09-17-2019
11:55 AM
|
0
|
3
|
1523
|
|
POST
|
Ok I see! Now I understand what you meaned by own Node.js. So the Node.Js installed in the Program Files dir is not related to WAB at all. Thank you again for your help Robert
... View more
09-05-2019
10:06 AM
|
0
|
0
|
1644
|
|
POST
|
I see this line in both startup.bat files: IF DEFINED PROGRAMFILES(X86) (SET nodeFile=node_x64.exe) ELSE (SET nodeFile=node_x86.exe) I suppose it means that our WAB installations are using the Node.JS x64 located in Program Files which is the 6.9.1 version. As it's not me that have installed WAB, I cannot confirm that those startup.bat were not modified. As it's not possible to install two versions of Node.JS on a computer, I am not sure if it is safe to update it to the latest version.
... View more
09-05-2019
09:45 AM
|
0
|
2
|
1644
|
|
POST
|
I have not installed the Node.JS LTS yet, I don't want to broke anything... The reason I would like to update Node.JS is to be able to use GitHub - Esri/generator-esri-appbuilder-js: Yeoman generator to help customize Esri's WebAppBuilder It does not support Node.JS 6
... View more
09-04-2019
01:15 PM
|
0
|
4
|
1644
|
|
POST
|
Hi, We have two installations of WAB (version 2.7 and 2.9) on a same server and an installation of Node.JS version 6.9.1 used by both WAB. I would need to update Node.JS and npm to the latest version, but I wonder if this will cause problems with our WAB installations. Is there a special procedure to follow when updating Node.JS? Thank you! Maxime D.
... View more
09-04-2019
12:18 PM
|
0
|
6
|
1715
|
|
POST
|
It's a "themes/FoldableTheme/panels/FoldablePanel/Panel" It seems the only position that affect the height is the bottom position. Height and width have not effect.
... View more
08-29-2019
08:31 AM
|
0
|
1
|
1565
|
|
POST
|
Yes, it returns the widget panel object. I don't know if it's related to my problem, but the widget is not a widgetOnScreen, it's a widget with a button embedded in the header, so in the config.json, it is in the widgetPool property.
... View more
08-29-2019
08:12 AM
|
0
|
0
|
1565
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-13-2025 05:45 AM | |
| 2 | 06-03-2024 10:33 AM | |
| 2 | 05-14-2025 10:45 AM | |
| 2 | 04-12-2022 07:00 AM | |
| 1 | 02-26-2025 05:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|