Enter value auto caps in editable-text using angul

2019-08-16 17:02发布

hi all i am using angularjs editable-text i am trying to do when i enter the in editable-text that value should be changed to uppercase while i typing but i am not able to get my need anyone can help

here i attached my fiddle :http://jsfiddle.net/ckosloski/NfPcH/19035/

1条回答
兄弟一词,经得起流年.
2楼-- · 2019-08-16 18:07

add this in your controller

 $scope.convertToUpperCase = function(user){
        user.name = user.name.toUpperCase();
  }

and call it on onshow

  <a href="#" editable-text="user.name" onshow="convertToUpperCase(user)">{{ user.name || 'empty' }}</a>

see this http://jsfiddle.net/NfPcH/19577/

查看更多
登录 后发表回答