Need a special offer?Find out if your project fits.
+

how to display horizonatl and verticall scroll view on flexmonster table

Answered
MayurSinh asked on July 23, 2020

how to display horizonatal and vertical scrollIndicator view on flexmonster table.in mobile application

3 answers

Public
Illia Yatsyshyn Illia Yatsyshyn Flexmonster July 23, 2020

Hello,
 
Thank you for reaching out to us.
 
We have managed to reproduce the problem with an absence of scrollbars when using React Native.
At the same time, the problem is not reproducible when using mobile browsers. Therefore, our team assumes it is due to the specifics of rendering the WebView in React Native.
 
We will research the problem and get back with results ETA Aug 25.
 
Please contact us in case other questions arise.
 
Regards,
Illia

Public
Illia Yatsyshyn Illia Yatsyshyn Flexmonster August 26, 2020

Hello,
 
We are pleased to inform you that the issue with showing the scrollbar on mobile devices was fixed.
This is available in the 2.8.14 version of Flexmonster.
 
You are welcome to update the component.
 
Please note that in order to display scrollbars in React Native application, the following CSS needs to be added to the page:

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

 
Please let us know if everything works fine for you.
 
Best regards,
Illia

Public
Illia Yatsyshyn Illia Yatsyshyn Flexmonster September 2, 2020

Hello,
 
Our team is wondering whether the provided fix did manage to resolve the problem.
 
We are looking forward to hearing from you.
 
Best regards,
Illia

Please login or Register to Submit Answer