it is quite simple to customize the view if the widget produces only one input field:
<div style="font-size: 14px; line-height: 17px;">Страна</div>
<div class="row">
<label> This is something: <? $this->widget(); ?></label>
</div>
Sure, we could specify $html_pre and $html_post for each input and manage like that:
function widget.run()
{
echo $html_pre1;
echo CHtml::activeTextField(...);
echo $html_post1;
echo $html_pre2;
echo CHtml::activeTextField(...);
echo $html_post2;
...
}
But is very bad looking. Is there another way?