我需要将 css 类添加到 Ember.Select 视图:
{{view Ember.Select contentBinding="kpiTypes" valueBinding="model.amount" optionValuePath="content.value" optionLabelPath="content.name"}}
只添加类不起作用
我需要将 css 类添加到 Ember.Select 视图:
{{view Ember.Select contentBinding="kpiTypes" valueBinding="model.amount" optionValuePath="content.value" optionLabelPath="content.name"}}
只添加类不起作用
使用classNames
属性:
{{view Ember.Select classNames="foo bar"}}
对不起,我知道我真的来晚了。但这可能会为其他需要帮助的人节省时间。
正如 Marcio 所说,如果您希望将classNames作为静态类添加到您的标签中,则可以使用它。如果您需要将动态属性绑定为其类,我们可以使用classNameBindings关键字。
{{view Ember.Select
contentBinding="App.algosController"
selectionBinding="App.selectedAlgoController.algo"
optionLabelPath="content.algoName"
optionValuePath="content.id"
classNameBindings="App.selectedAlgoController.algo.algoType"}}