css3 - Yii2: How to make position:none for kartik timepicker? -
i need apply css3 properties kartik time picker widget tried
<div style=" position: none;"> <?php echo $form->field($model, 'checkin_time')->widget(timepicker::classname(), [] )->label(false); ?>?> </div> but not able it, there way apply css3 properties?
i think should use containeroptions array set html attributes main widget container
<?php echo $form->field($model, 'checkin_time')->widget(timepicker::classname(), ['containeroptions' => ['style' => 'position:none;']] )->label(false); ?>
Comments
Post a Comment