私のドロップダウンメニューは、次のコードを使用して生成されています
{{view Ember.Select contentBinding="controller.softwares" valueBinding="ss.value" optionLabelPath="content.name" optionValuePath="content.id" prompt="Select Software" name="software" }}
現在、次のようなものを生成しています
<select name="software">
......
</select>
なりたい
<select name="software" data-id="45">
......
</select>
私は試した
{{view Ember.Select contentBinding="controller.softwares" valueBinding="ss.value" optionLabelPath="content.name" optionValuePath="content.id" prompt="Select Software" name="software" data-id="ss.id" }}
しかし、うまくいきませんでした。