Hi all,
when I try to Edit Vertices, I am able to Add and Move vertex but can't Delete.
right clicking vertex on map takes the screen to bottom of the page.
can't figure put why Add/Move works and Delete doesn't?
calling editGeometry()
UPDATE: also added options but still the same issue
editGeometry()
Solved! Go to Solution.
so its an issue with styling (esri js 3x), when I right click on vertex to delete, Delete option shows up but at the bottom left corner. so will just to customize styling for dijitPopup class.
if anyone else ever have this issue.
add this to your css
.dijitPopup {
position: absolute;
cursor: pointer;
}
so its an issue with styling (esri js 3x), when I right click on vertex to delete, Delete option shows up but at the bottom left corner. so will just to customize styling for dijitPopup class.
if anyone else ever have this issue.
add this to your css
.dijitPopup {
position: absolute;
cursor: pointer;
}