February 2020
List and Form Configuration in HTML5
web:NumberOfItemsInitiallyLoaded
It is now possible to configure the number of items that should be loaded intitially in lists:
<List AllowDelete="True" AllowEdit="True" Query="From I In APP_Timesheet.Include(*) Select I" web:NumberOfItemsInitiallyLoaded="100"
xmlns="http://www.timecockpit.com/2009/ui/data"
xmlns:p="http://www.timecockpit.com/2009/ui/controls"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="web"
xmlns:web="http://www.timecockpit.com/2016/web/controls">
...
</List>
web:ConvertToLocalTime
Time values in DateTimeCells can be converted from UTC to local time (read-only).
<Form ModelEntityName="USR_DateCellTestEntity" xmlns="http://www.timecockpit.com/2009/ui/data"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="web"
xmlns:web="http://www.timecockpit.com/2016/web/controls">
...
<DateTimeCell Content="=Current.USR_NullableDateTime" web:ShowLocalTime="True" Header="Show Local Time" />
...
</List>
Bug Fixes & Improvements
- Display bug with multiple multi-day calendar items in time sheet calendar is fixed
- A busy indicator is shown when application is loaded
- Nested calculated properties displayed an empty value instead of 0 in HTML5 client