Esempio n. 1
0
<?php

use anmoroz\analytics\models\Aggregation;
use yii\helpers\Html;
?>
<tr id="parametr_aggregation_<?php 
echo $aggregationModel->parameter;
?>
">
    <td>
        <?php 
echo Aggregation::getParameters($aggregationModel->parameter);
?>
    </td>
    <td>
        <?php 
echo Html::dropDownList('aggregation[' . $aggregationModel->parameter . '][type]', $aggregationModel->type, Aggregation::getTypes(), ['class' => 'form-control input-small']);
?>
    </td>
    <td width="130">
        <?php 
echo Html::textInput('aggregation[' . $aggregationModel->parameter . '][additionalValue]', $aggregationModel->additionalValue, ['class' => 'form-control jsAggrAdditionalValue', 'type' => 'number', 'min' => 1, 'max' => 100, 'style' => 'display: none;']);
?>
    </td>
    <?php 
echo $this->render('_deleteButtonCell');
?>
</tr>