0
最近我有一個請求來改變你輸入的Angular-xeditable TextArea的高度,我一直在嘗試對css做很多修改,但它不起作用。任何幫助,高度讚賞。Angular-xeditable - 如何在輸入時更改Textarea的高度?
最近我有一個請求來改變你輸入的Angular-xeditable TextArea的高度,我一直在嘗試對css做很多修改,但它不起作用。任何幫助,高度讚賞。Angular-xeditable - 如何在輸入時更改Textarea的高度?
這是一個解決方案,它是在Angular-Xeditable之上創建自己的指令。關鍵是當你使用該指令並且想要注入Angular-Xeditable時,你需要添加前綴「e-」。例如,如果您的指令稱爲「擴展」,那麼當您將該指令與angular-xeditable一起使用時,指令名稱應爲「e-expanded」
查看下面的示例代碼。希望它有幫助 Link to example code
<h4>Angular-xeditable Textarea (Bootstrap 3)</h4>
<div ng-app="app" ng-controller="Ctrl">
<a href="#" editable-textarea="user.desc" e-expanding >
<pre>{{ user.desc || 'no description' }}</pre>
</a>
</div>