0
我正嘗試在可編輯的網格中使用ui-select下拉菜單。 這是我的編輯單元模板的樣子: -ng網格中的角度ui選擇
editableCellTemplate: "<ui-select ng-model=\"COL_FIELD\" ng-class=\"'colt' + col.index\" theme=\"bootstrap\"><match placeholder=\"Choose client Account..\"></match><choices repeat=\"client in clients | filter: $select.search\"><div ng-bind-html=\"client.clientAccount | highlight: $select.search\"></div></choices></ui-select>"
不過,我不能夠選擇的值綁定到類,
ng-class=\"'colt' + col.index\"
我得到我的控制檯上看到以下錯誤:
Error: [$parse:syntax] Syntax Error: Token '{' is an unexpected token at column 20 of the expression ['colt' + col.index {open: $select.open}] starting at [{open: $select.open}].
的HTML生成如下:
基本上生成的html爲ng-class =「'colt'+ col.index {open:$ select.open}」,並且大括號產生語法錯誤..
任何人都面臨類似的問題?