javascript - Automatic scroll to end of scrollable-content -


i face common problem native keyboard of smartphone devices. have list input field @ end. so, list in scrollable-content class can scroll without problem. if want enter text in last input field, keyboard pops , hide it.

is there possibility automatic scroll item? figured out $uiviewscroll don't worked in directive.

(function(){ 'use strict';   angular.module('directive.scroll', [])  .directive('topscroll', ['$uiviewscroll', function($uiviewscroll){   return {     restrict: 'a',     link: function(scope, element, attrs){       $uiviewscroll(element);     }   }  }]); })(); 

any suggestions?

i had same issue.

in config.xml , if have :

<preference name="fullscreen" value="true" /> 

change :

<preference name="fullscreen" value="false" /> 

Comments