Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    DateItem with displayFormat toUSShortDateTime

    I currently have a dateItem:

    Code:
    <DynamicForm 
        ID="dateForm"
        numCols="4"
        width="600"
    >
        <fields>
            <field name="directInputDate" title="Direct Input Date" displayFormat="toUSShortDateTime" type="date" useTextField="true"/>
        </fields>
    </DynamicForm>
    Is there any way to get the current time displayed with the date that the user is chosen? When I pick a date from the calendar picker, it always comes back with a 00:00

    #2
    While you could do so by defining a custom date formatter, this will not ultimately result in a workable interface because the DateItem edits dates, not datetimes.

    Comment

    Working...
    X