Meteor アプリで具体化された選択フォームを使用しようとしていますが、機能していないようです....
これが私のコードです:
html
<template name="createAutomatedaction">
<div class="input-field col s12">
<select>
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<label>Materialize Select</label>
</div>
</template>
js
Template.createAutomatedaction.onRendered(function(){
this.$('select').material_select();
});
選択フォームをクリックすると、ドロップダウンが表示されません。万が一私が見逃しているものを誰かに教えてもらえますか? どうぞよろしくお願いいたします。
これ でhttps://www.dropbox.com/s/nzh7sp5x7by6e1t/Screenshot%202015-05-09%2018.20.54.png?dl=0
これ なしでhttps://www.dropbox.com/s/e1asl3y5pbtg5yp/Screenshot%202015-05-09%2018.24.08.png?dl=0