1
デュアルボックスで選択した値を取得しようとしています。bs dual listの選択ボックスから値を取得するangularJS
.htmlを
<select name="duallistbox_demo1[]"
ng-model="recSchedule"
ng-options="recSchedule as recSchedule.recSchedulingName for recSchedule in recordingSchedules"
size="10"
multiple
bs-duallistbox
selected-list-label="{{ settings.selectedListLabel }}"
non-selected-list-label="{{ settings.nonSelectedListLabel }}">
</select>
JSONファイル:
[
{
"id": "1",
"recSchedulingName": "Record Schedule 1"
},
{
"id": "2",
"recSchedulingName": "Record Schedule 2"
},
{
"id": "3",
"recSchedulingName": "Record Schedule 3"
}
]
の.jsを私はコードスニペット以下のようなものを行っている。このリンクhttp://www.virtuosoft.eu/code/bootstrap-duallistbox/
のrefferenceと
console.log($('[name="duallistbox_demo1[]"]').val());
私はこれだけを取得しています:私はここにIDまたはrecSchedulingNameを表示する必要が
["object:326"]
。
角度のあるブートストラップまたはカスタムブートストラップ+角度? –
角を持つbs – MonsterJava