POST
|
Hello! can you help us reproduce this error? I tried to replicate but i'm not seeing it:
https://codepen.io/driskull/pen/abeKZVy
... View more
3 weeks ago
|
0
|
0
|
50
|
POST
|
Hello @kaleb_integralNZ ,
Here is a fix: https://codepen.io/driskull/pen/eYqveRg
arcgis-map {
height: 100%;
container-type: inline-size;
contain: layout;
}
Here is some more information on why this is needed:
https://dev.to/michaelcharles/chrome-129s-container-query-change-2i77
https://issues.chromium.org/issues/369781727?pli=1
Let me know if that solves it for you.
... View more
10-14-2024
01:33 PM
|
1
|
1
|
157
|
POST
|
Here's the issue: https://github.com/Esri/calcite-design-system/issues/10129
... View more
08-21-2024
08:54 AM
|
0
|
0
|
223
|
POST
|
Hi @FC_Basson thanks for reporting these issues! > With the new calcite-dialog component, when closing other "closable" elements contained within the dialog, the dialog also closes. The happens with panels (inside a shell panel) and other dialogs. I'll create an issue for this one. > Also, placing a calcite-shell component within the dialog, you need to resize it manually so that it does not cover the dialog header and footer components. We have an issue for this one already. https://github.com/Esri/calcite-design-system/issues/10095 > Are there any other components to achieve the desired functionality? No, but you can continue using the modal component until these bugs are fixed.
... View more
08-21-2024
08:47 AM
|
0
|
1
|
223
|
POST
|
Thanks @LefterisKoumis. I'll pass the feedback along.
... View more
08-21-2024
08:44 AM
|
0
|
0
|
200
|
POST
|
Hi @LefterisKoumis, Are you referring to the "collapsed" property on the "calcite-shell-panel"? There are no UI elements in the component that a user would click to toggle this property. If it is being toggled, its likely being done programmatically somewhere in your code. If that's the case, you should be able to track the state of it there. I will create an issue to add an event to listen for when this property changes. Issue: https://github.com/Esri/calcite-design-system/issues/10116
... View more
08-20-2024
09:52 AM
|
0
|
2
|
227
|
POST
|
Hi @MauricioBarrera > I've gotten it to work, kind of. The issue I'm having is with the Dropdown component. It has an accessibility parameter that opens/closes the dropdown when the Space bar is used. This is preventing the input of having spaces entered by the user. This seems like a bug. I think its because the event is being emitted internally on the component. If we move the event to the host dropdown element then preventing it should not cause the space key to do anything. I've created an issue to get this fixed: https://github.com/Esri/calcite-design-system/issues/9750
... View more
07-09-2024
02:03 PM
|
0
|
0
|
272
|
POST
|
Hi @DrewNemecekIp, I think we have an issue to address what you are seeing. Does this sound correct? https://github.com/Esri/calcite-design-system/issues/6818 There is also a workaround noted here: https://codepen.io/mac_and_cheese/pen/WNBNEWB?editors=1000
... View more
07-09-2024
01:37 PM
|
0
|
1
|
371
|
POST
|
Hi @FC_Basson , we did find a potential chrome bug that may be related to the password issue. https://bugs.chromium.org/p/chromium/issues/detail?id=1496312&q=duplicate%20id%20shadow&can=2 The id's for toggle shouldn't be an issue since they are encapsulated within a shadowRoot. So it might just be a false positive warning that is occurring here.
... View more
12-01-2023
11:14 AM
|
1
|
0
|
583
|
POST
|
Hi @FC_Basson do you have a code sample you could share where you're seeing this? I wasn't able to see it in chrome. These id's are within the shadowRoot of a component so they should not be conflicting with each other since they are in a different DOM root.
... View more
11-27-2023
11:10 AM
|
0
|
0
|
637
|
POST
|
Great suggestion @BenPitcairn . We can do that by adding some new slots for center content at the 'start' (top) and 'end' (bottom). Created issue here: https://github.com/Esri/calcite-components/issues/5668
... View more
10-31-2022
10:16 AM
|
0
|
0
|
708
|
POST
|
Shell hasn't been depreciated, i'll see whats going on there as well. Thanks
... View more
06-23-2021
09:54 AM
|
1
|
0
|
1079
|
POST
|
Hey @Anonymous User this sounds like a bug. I see that the max-width is based on the screen (max-width: 20vw). I'll report to the team. Thanks
... View more
06-23-2021
09:48 AM
|
0
|
3
|
1084
|
POST
|
Hey Jay, I think that is because either the layer you're using needs the `outFields` set on it to define what fields are needed or you can also set the `outFields` on the popupTemplate. https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#outFields
... View more
08-11-2020
01:50 PM
|
0
|
1
|
6493
|
POST
|
Hi Jay, it would be something like this: const popupTemplate = new PopupTemplate({
content: (event) => {
const { graphic } = event;
const container = document.createElement("div");
if (graphic.attributes.FaultZone) {
const faultZone = document.createElement("strong");
faultZone.textContent = "Fault Zone:";
container.appendChild(faultZone);
const faultZoneSum = graphic.attributes.Summary;
const faultTip = document.createElement("span");
faultTip.textContent = faultZoneSum;
container.appendChild(faultTip);
faultTip.onclick = () => {
showHideCalcitePanels("#panelLegend", "#collapseLegend");
query("#customMessage").html(faultZoneSum);
};
}
return container;
}
});
... View more
08-10-2020
03:53 PM
|
0
|
3
|
6493
|
Title | Kudos | Posted |
---|---|---|
1 | 10-14-2024 01:33 PM | |
1 | 12-01-2023 11:14 AM | |
1 | 06-23-2021 09:54 AM | |
1 | 04-12-2018 11:10 AM | |
1 | 04-09-2015 03:08 PM |
Online Status |
Offline
|
Date Last Visited |
Tuesday
|