<?php
Yii::app()->clientScript->registerScriptFile(Yii::app()->request->baseUrl.'/js/jquery.mask.min.js', CClientScript::POS_HEAD);

Yii::app()->clientScript->registerScript('tabla', "$('.porcentaje').mask('#.##0,00', {reverse: true});");
?>

<?php $form = $this->beginWidget('bootstrap.widgets.TbActiveForm', [
    'id' => 'banco-tipo-servicio-form',
    'enableAjaxValidation' => false,
    'enableClientValidation' => true,
    'clientOptions' => [
        'validateOnSubmit' => true,
        'validateOnChange' => true,
        'validateOnType' => true,
    ],
    'type' => 'horizontal',
]); ?>

<?= $form->textFieldRow($model, 'descripcion'); ?>
<?= $form->textFieldRow($model, 'porcentaje', ['class' => 'porcentaje']); ?>

<?php $this->widget('bootstrap.widgets.TbButton', [
    'buttonType' => 'submit',
    'type' => 'primary',
    'label' => $model->isNewRecord ? 'Registrar' : 'Actualizar',
]); ?>
<?php $this->endWidget();
