yii2-widget-activeform icon indicating copy to clipboard operation
yii2-widget-activeform copied to clipboard

ActiveField enhancement

Open stovesy opened this issue 3 years ago • 0 comments

I wonder if you would consider the following enhancement. It is an alteration to the protected function initDisability(&$options) in ActiveField.php The following will disable any attributes which are not active. I am using this to automatically disable unavailable fields as defined in scenarios.

$model = $this->model; if (!in_array($this->attribute, $model->activeAttributes())) { $options['disabled'] = true; }

Thanks for you time

stovesy avatar May 03 '22 15:05 stovesy