I need to bring in the select a default option every time the page loads. But with the data-live-search plugin. Is this possible?
<div class="row-fluid">
<select class="selectpicker" data-show-subtext="true" data-live-search="true">
<option data-subtext="Rep California">Tom Foolery</option>
<option data-subtext="Sen California">Bill Gordon</option>
<option data-subtext="Sen Massacusetts">Elizabeth Warren</option>
<option data-subtext="Rep Alabama">Mario Flores</option>
<option data-subtext="Rep Alaska">Don Young</option>
<option data-subtext="Rep California" disabled="disabled">Marvin Martinez</option>
</select>
Itookthisexamplefromthenetwork.IwanteditwhenIwasviewingthepage,thatbydefaultselectwouldbringmeaspecificvalue.Ex:insteadofbringing"Tom Foolery" according to the image, bring "Maickon" for example. Setting the value property is not working.