I get complaints that people don't know they can scroll down on iPads because there are no scroll bars. Scrolling does work fine, however. I guess it just isn't apparent to some. Thanks
Jay,
I thing about this is IOS/apple specific and is the norm for apple they remove the scroll bar for some reason. You can add this css to your apps theme common.css using this and it will show a scrollbar but it will not really work.
.esriPopup .contentPane::-webkit-scrollbar {
-webkit-appearance: none;
}
.esriPopup .contentPane::-webkit-scrollbar:vertical {
width: 11px;
.esriPopup .contentPane::-webkit-scrollbar:horizontal {
height: 11px;
.esriPopup .contentPane::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 2px solid white; /* should match background, can't be transparent */
background-color: rgba(0, 0, 0, .5);
.esriPopup .contentPane::-webkit-scrollbar-track {
background-color: #fff;
These "new" forums are taking some getting used to for me. Done!
Don't forget to mark this question as answered by clicking on the "Correct Answer" link on the reply that answered your question.
Thanks Robert.
Membros conectados podem postar, seguir atualizações e mais. Novo aqui? Registre uma conta gratuita.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.