Already have experience using bootstrap popovers with separate div's... also have expience with ko.validation with native and custom validation rules but in input group text have unspected apereance:
<div class="input-group">
<div class="input-group-btn clearfix">
<button type="button" class="btn btn-default" data-bind="text: SupplierName" tabindex="-1"></button>
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" tabindex="-1">
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu" data-bind="foreach: SupplierList, valueAllowUnset: true">
<li><a href="#" data-bind="click: $parent.SupplierSelection"><span data-bind="text: text"></span></a></li>
</ul>
</div>
<input type="text" class="form-control"
data-bind="value: Product, validationOptions: { errorElementClass: 'error' }">
</div>
Error menssage is showed under Product input text. It's posible get error span in a popover?