2013-07-10 131 views
4

我有一個文本框,我想要一個'動態'佔位符文本(在視圖中定義和管理),但我也希望它有一個爲其定義的動作。我試了下面兩行:輸入幫手的動作

{{ input id="test" placeholder=view.text action expand target="view"}} 

<input type="text" id="test" placeholder="{{view.text}}" {{action expand target="view"}} /> 

兩者都不起作用。所以我的問題是,有沒有辦法實現我想要的或者在視圖中有一個焦點處理程序,它只是爲id進行篩選(然後調用expand函數)?

回答

2

你可以嘗試做這樣的:

<input type="text" id="test" {{bindAttr placeholder=view.text}} {{action expand target="view"}} /> 

的工作示例見here

希望它可以幫助

+0

AAhh是的,我怎麼沒有發現。謝謝 – Markus

12

如果你想堅持到輸入助手,你可以做這樣的事情:

{{input placeholder=view.text action="expand" targetObject=view}} 

注意targetObject應該是一個字符串。