Can we customize the DATE TIME INPUT component to make Monday as the First Day in the calendar view & also is it possible to edit the Day/Month/Year without opening the calendar?
You can use Python’s datetime module to create the date you want to set…
import datetime
dt = datetime.datetime(2019, 12, 4)
and then assign it to the Datetime Input component…
Don’t use datetime objects with Ignition they will not play nice! Ignition uses java.util.Dates everywhere. Just use system.date.* functions to do all date calculations and it will plug in fine into any Ignition fucntion/component.
I just want to customize the calendar view, default it shows Sunday as 1st column, but we want to show Monday as 1st column in the calendar and edit means as just IO field, user want to type the date if needed, instead of selecting from the calendar view