In my case it is Android 2.3.6. I’ve got an app with the $ionicModal:
$ionicModal.fromTemplateUrl('products_modal.html', {
scope: $scope,
animation: 'slide-in-up',
focusFirstInput: false,
backdropClickToClose: true,
hardwareBackButtonClose: true
}) ...
The template contains:
<div class="my-content">
<div class="my-list" >
<div class="my-item" ng-repeat="..">
</div>
</div>
</div>
And the css for the list is:
.my-content {
width: 100%;
height: 100%;
margin-top: 94px;
overflow-y: scroll;
}
.my-list {
list-style: none;
font-size: 25px;
line-height: 62px;
}
.my-item {
height: 62px;
border-bottom: 1px solid #ddd;
padding-left: 15px;;
width: 100%;
}
On the Android 2.3.6 that I tested (Samsung Galaxy Mini, very popular) scrolling the
Another problem is the SELECT element that I’ve placed in the sidebar menu. If clicked, nothing happens. No items from the select can be selected.
Of course everything works properly on Android 4.x, but Android 2.x is still some part of the market that I’d like to support.
Could any of you have any experience how to make the select and scroll in modal work?
–
rafal