Your IP : 216.73.216.79


Current Path : /var/www/html/crm/views/sopsubcontent/
Upload File :
Current File : /var/www/html/crm/views/sopsubcontent/_search.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

$this->registerCss(".form-search .form-control{margin:0;}");
$this->registerCss(".topsection-search label{margin-right:1em;}#sopsubcontentsearch-keyword{width:400px;}");
?>
<div class="topsection-search mt-4 mb-4">
    <?php $form = ActiveForm::begin(['action' => ['index'], 'method' => 'get', 'options' => ['class' => 'form-inline form-search']]); ?>
    <?= $form->field($model, 'parent_id')->hiddenInput()->label(false); ?>
    <?= $form->field($model, 'keyword')->textInput(['class' => 'form-control ml-3 mr-3', 'placeholder' => 'Keyword'])->label(false); ?>
    <div class="form-group">
        &nbsp;&nbsp;<?= Html::submitButton('Search', ['class' => 'btn btn-brand']) ?>
        &nbsp;&nbsp;<?= Html::a('Reset', ['index', 'SopSubcontentSearch[parent_id]' => $model->parent_id], ['class' => 'btn btn-outline-brand']) ?>
        &nbsp;&nbsp;<?= Html::a('Add New', ['create', 'parent_id' => $model->parent_id], ['class' => 'btn btn-brand']) ?>
        &nbsp;&nbsp;<?= Html::a('Back to Main List', ['sop/index'], ['class' => 'btn btn-brand']) ?>
    </div>
    <?php ActiveForm::end(); ?>
</div>