|
POST
|
I just did a fresh install of 2023.1 and tried to apply labels to services using the component selection boxes and the page freezes. No labels are applied and I have to refresh the page to get it working again...
... View more
06-05-2023
10:53 AM
|
1
|
5
|
2055
|
|
IDEA
|
Hi. As long as there is a way to alert that the Started At attribute has changed, then yes that would virtually be the same thing as a reboot alert and would work...
... View more
05-09-2023
04:33 AM
|
0
|
0
|
1304
|
|
IDEA
|
Would it be possible to allow the user to adjust the column width of all data grids? The text gets cut off and there is also no title property set for items so you cannot hover over to get the item value.
... View more
04-28-2023
09:53 AM
|
3
|
1
|
808
|
|
POST
|
I take it the ID refers to the actively running metric? For instance the email sends as ID: 2, which in the list is labeled as Name: Process CPU Utilized - postgres.exe (%). It would be excellent if instead of NA in the email Name field it could insert the label Name of the metric...
... View more
04-28-2023
05:45 AM
|
1
|
0
|
3624
|
|
IDEA
|
Could we add a reboot metric to the Windows Host component metrics? That functionality was available in ArcGIS Monitor 10.8.1 and it was good to confirm that other errors that came up were caused by a server reboot.
... View more
04-28-2023
05:05 AM
|
2
|
5
|
1358
|
|
POST
|
I am still in development so I will wait for the official release.
... View more
02-01-2023
06:19 AM
|
0
|
0
|
2455
|
|
POST
|
I solved this by modifying the following from 3.3x to 3.40 in the env.js file: var apiVersion = '3.40';
////////uncomment the following line when downloading the app
apiUrl = 'https://js.arcgis.com/3.40';
... View more
05-05-2022
10:04 AM
|
2
|
0
|
3011
|
|
POST
|
René, How do you listen for changes to the theme? I have developed a widget and would like to listen for the theme changes for the internal CSS. Thanks, René T.
... View more
01-17-2022
12:12 PM
|
0
|
0
|
3257
|
|
POST
|
Hello, I am trying to create a widget boiler plate so I can refactor some existing code into widget modules. So far things are working, however, all the examples I have seen require the user to pick the CSS esri theme, i.e. light or dark. I would like to implement not only my own custom light and dark elements, but also utilize the available esri themes. Is there an example out there? So far I have a cringy way of determining the user's preferred stylesheet in their HTML: var temptheme = "light";
for (let i=0; i<document.styleSheets.length; i++) {
let ss = document.styleSheets[i].href;
console.log(`Stylesheet ${i+1} of ${document.styleSheets.length}: ${ss}`);
if (ss && ss.split('/assets/esri/themes/').length == 2) {
temptheme = ss.split('/assets/esri/themes/')[1].split('/')[0];
}
}
const theme = temptheme.toLowerCase();
console.log(`Theme: ${theme}`); Thanks, René
... View more
01-07-2022
08:59 AM
|
0
|
0
|
609
|
|
POST
|
After doing more research, a quick hack is to do the following: import esriConfig from "@arcgis/core/config.js";
import * as intl from "@arcgis/core/intl";
export function functionName() {
var lang = intl.getLocale().toLowerCase().slice(0, 2);
var widgetsAssetsPath = esriConfig.assetsPath + "/esri/widgets/";
var legendT9n = `${widgetsAssetsPath}${widget.widget_id}/t9n/${widget.widget_id}_${lang}.json`;
var t9n = {widgetLabel: "Layer List"}; // Default value
returnConfig(legendT9n).then(t9nResults => {
if(t9nResults){
t9n = t9nResults;
}
}).then(function (){
console.log(t9n.widgetLabel);
}); Just something for now so I don't have to define the labels elsewhere...
... View more
08-26-2021
09:36 AM
|
0
|
0
|
2235
|
|
POST
|
Ok, thanks René. I was looking into it because when the widget is wrapped in an Expand, only the expandTooltip is shown on hover (title) and results to the default ("Expand" in En, and "Développer" in Fr). I was hoping to capture the label from the widget to override using expandTooltip() so that a user with a screen reader will be able to read the widget label instead.
... View more
08-26-2021
08:11 AM
|
0
|
2
|
2256
|
|
POST
|
I have been trying to access the message bundle for existing widgets, i.e. Legend. The instructions are clear on creating and accessing your own custom widget bundles, however, I need to access the locale specific label for an existing widget. What do I use for the BundleID for @arcgis/core/widgets/Legend as an example? Thanks, René
... View more
08-26-2021
07:38 AM
|
0
|
5
|
2279
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-10-2025 05:01 AM | |
| 1 | 03-04-2025 05:35 AM | |
| 1 | 09-05-2023 11:32 AM | |
| 1 | 06-05-2023 10:53 AM | |
| 1 | 12-05-2023 05:37 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-02-2025
10:54 AM
|