Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 533 Bytes

time.md

File metadata and controls

25 lines (17 loc) · 533 Bytes

Time Field

Represents <input> element of type "time" that lets the user enter a time, either with a textbox that validates the input or with a special time picker interface. Documentation:

Usage Example

Widget:

use Yiisoft\Form\Field\Time;

echo Time::widget();

Result will be:

<div>
    <input type="time">
</div>