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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -