angularjs - Text in Textarea is not scrolling with ng-repeat with ionic- angular js -
when using textarea below ng-repeat in angular js - ionic . text area not working , time lost focus also. please provide me solution code :
<div class="title">comments</div> <ul class="comment_list"> <li ng-repeat="x in comments "> <a><img no-image ng-src="{{profile_img_path.image_url_tiny+x.user.image}}" alt="" class="pro_img"></a> <div class="pro_deatil" > <h2> {{x.user.name}} </h2> <p>{{x.commentdish.comment}}</p> </div> <div class="pro_like" > </div> <div class="clearfix"></div> </li> </ul> <div class="comment"> <textarea name="comment" rows="5" cols="10" ng-model="comment_data.comment" placeholder="enter comment" class="post_txt_area" overflow-scroll="true"></textarea> <div> <a ng-click="postcomment()" class="event_btn">comment</a> </div> </div>
please me if has solution issue....
Comments
Post a Comment