Hi,

how can i get control of the option elements within a t:select?

I want to provide a unique data-icon property for each option.

<t:select t:id="iconCode" t:model="literal:fa-globe=Globe,fa-flask=Flask,fa-user-tie=User-tie">
</t:select>

will render:

<select class="form-control" id="iconCode" name="iconCode">
 <option value=""></option>
 <option value="fa-globe">Globe</option>
 <option value="fa-flask">Flask</option>
 <option value="fa-user-tie">User-tie</option>
</select>

i need something like

<select class="selectpicker" id="iconCode">
  <option data-icon="fa-globe">
      Globe
  </option>
  <option data-icon="fa-flask">
      Flask
  </option>
  <option data-icon="fa-user-tie">
      User-tie
  </option>
</select>

i want to add class="selectpicker" to the t:select in order to let bootstrap convert the select to a dropdown with icons.

Kind regards
David


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to