- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2015 06:28 AM
I have added the following System Property to have Sunday as the first day of the week:
glide.ui.date_format.first_day_of_week
I don't think I have entered the right value, but when I went to System Properties to change it, I did not see the property I have added.
Please advise.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2015 06:33 AM
Try looking here, as well:
also, all system properties are listed in the sys_properties table. Get to it by typing sys_properties.list in the Application Menu's Type Filter Text speace at the top of the left hand side.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2015 06:33 AM
Try looking here, as well:
also, all system properties are listed in the sys_properties table. Get to it by typing sys_properties.list in the Application Menu's Type Filter Text speace at the top of the left hand side.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2015 06:34 AM
Below is code in "Time card" week start on field. to get week start sunday by default. You can do it same way
javascript:var today = new GlideDateTime(gs.nowDateTime()); var dtUtil = new DateTimeUtils(); var firstDay = gs.getProperty("com.snc.time_card.start_day", 7); var start = dtUtil.getWeekStart(today, firstDay); start.getDisplayValue();