Skip to content

Instantly share code, notes, and snippets.

@motin
Last active December 19, 2015 13:59
Show Gist options
  • Save motin/5966029 to your computer and use it in GitHub Desktop.
Save motin/5966029 to your computer and use it in GitHub Desktop.
Custom row example code
<?php
// YiiBooster with pull #601
$input = $this->widget('P3MediaSelect', array('model' => $model, 'attribute' => 'original_media_id'), true);
echo $form->customRow($model, 'original_media_id', $input);
// YiiStrap
$input = $this->widget('P3MediaSelect', array('model' => $model, 'attribute' => 'original_media_id'), true);
echo TbHtml::customActiveControlGroup($input, $model, 'original_media_id');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment