Support Article
IPAD-Autocomplete data is not populated properly
SA-28480
Summary
IPAD-Autocomplete data is not getting populated completely. If the value is large then the data is getting truncated.
Issue is reproducible in IPAD air only.
Error Messages
Not applicable
Steps to Reproduce
1) Configure an autocomplete.
2) Open the application in IPAD air.
3) Click the down arrow.
4) Observe that the data is being truncated for the second row.
Root Cause
There are Custom CSS styles for ipad/iphone in media queries which includes style width:20px, that is causing the issue.
Resolution
Following are the details:
Before implementing the changes
@Media only screen and (min-width:768px){
.content-inline_grid_3_list_header2>.item-2{
width:40%;
}
Div.cellIn{
display:table-cell;
padding-top:0;
width:20px;
}
}
After the local change
@Media only screen and (min-width:768px){
.content-inline_grid_3_list_header2>.item-2{
width:40%;
}
Div.cellIn{
display:table-cell;
padding-top:0;
width: 100%; // this width has been changed to 100 % from 20px;
}
}
Published October 6, 2016 - Updated October 8, 2020
Have a question? Get answers now.
Visit the Collaboration Center to ask questions, engage in discussions, share ideas, and help others.