Posts

Showing posts with the label Meteor

Blaze selected attribute not working - Alternative Solution

Image
In this post, I will guide you through an alternative solution for the issue we all had faced at least once with DROPDOWNS. Being an newbee I would like to show what I did then Problem is concerned with make a particular item selected in dropdown when dropdown shows up, We are using Meteor with Blaze What We Tried Step : Creating Helpers. <select id="last_used_edit">        <option value="" disabled selected>Year</option>  <option value="1"  selected="{{option3Selected 'Option 1'}}"  >Option 1</option>  <option value="2"  selected="{{option3Selected 'Option 2'}}"  >Option 2</option>  <option value="3" selected="{{option3Selected 'Option 3'}}"  >Option 3</option>  <option value="4" selected="{{option3Selected 'Option 4'}}" >Option 34</option>   </select> Step...