Hi
i have one application and i have datepicker is there.but when i am trying to open date picker it is opening in wrong way because of Crome browser zoom 100% user is not able to select the data
Hi Arkyadeep,
DatePicker in OutSystems UI is built on top of Pikaday(JS Datepicker). There are 2 ways to get around this that i can think of:
1. You can move the Start Date before some of the other form elements.
2. You can work on the css of the DatePicker component to reduce its font / spacing / height / width such that it fits in well.
Regards,
Saurabh
Exactly.
Adding to the above answer can you please customise below css as per your requirement, Lets try it out and let us know.
html, body, #reactContainer, #transitionContainer, .screen-container {
height: 100%;
display: inline;
overflow: auto;}
Thanks.