Date deselection with shortcut for today
An example of recommended implementation of deselection logic when the calendar is in single selection mode.
Z2UI5_CL_SMPC_APP_305
Controls
sap.ui.unified
UI5 1.95
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_305- Source file
z2ui5_cl_smpc_app_305.clas.abap↗- Library
- sap.ui.unified
- UI5 entity
sap.ui.unified.Calendar- Demo kit sample
sap.ui.unified.sample.CalendarDateDeselection- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.95
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: calendar, sap.ui.unified, calendardatedeselection, html, verticallayout, horizontallayout, label, text
Controls it builds
- sap.m.Label
- sap.m.Text
- sap.ui.core.HTML
- sap.ui.core.mvc.View
- sap.ui.layout.HorizontalLayout
- sap.ui.layout.VerticalLayout
- sap.ui.unified.Calendar
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smpc_app_305.clas.abap — 128 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords calendar sap.ui.unified calendardatedeselection html verticallayout horizontallayout label text
" @summary An example of recommended implementation of deselection logic when the calendar is in single selection mode.
CLASS z2ui5_cl_smpc_app_305 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA selected_date TYPE string.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
" the last picked day (yyyy-MM-dd) - handleCalendarSelect compares against it
" to recognise the second click on the same day. Not bound, so it stays out
" of the round-trip model scan
DATA last_selected TYPE string.
METHODS view_display.
METHODS on_event.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_305 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
selected_date = `No Date Selected`.
view_display( ).
ELSEIF client->check_on_navigated( ).
view_display( ).
ELSEIF client->check_on_event( ).
on_event( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:u` v = `sap.ui.unified`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->a( n = `class` v = `viewPadding`
)->a( n = `xmlns:core` v = `sap.ui.core`
" the sample's own ../style.css (shared by the sap.ui.unified samples and
" listed in this sample's manifest) - the view carries the class and the
" rule behind it has to come with it. \{ \} escaped: the XMLView parser
" reads an unescaped brace as a binding
)->tag( n = `HTML` ns = `core`
)->a( n = `content` v = `<style>.viewPadding\{padding:1rem\}` &&
`.sap-phone .viewPadding\{padding:0rem\}` &&
`.sap-phone .sapUiCal\{position:relative\}` &&
`.labelMarginLeft\{margin:1rem\}</style>`
)->ele( n = `VerticalLayout` ns = `l`
)->tag( n = `Calendar` ns = `u`
)->a( n = `id` v = `calendar`
" showCurrentDateButton is @since 1.95 - kept 1:1 (POST_171)
)->a( n = `showCurrentDateButton` v = `true`
" the picked day is read out of the event as a UI5 EXPRESSION - indexed
" access and chained calls resolve there (app 139 idiom). The LOCAL date
" parts travel, not toISOString( ), which would shift the day east of
" Greenwich
)->a( n = `select` v = client->_event( val = `CAL_SELECT`
t_arg = VALUE #(
( `$event.oSource.getSelectedDates().length > 0 ? $event.oSource.getSelectedDates()[0].getStartDate().getFullYear() : 0` )
( `$event.oSource.getSelectedDates().length > 0 ? $event.oSource.getSelectedDates()[0].getStartDate().getMonth() + 1 : 0` )
( `$event.oSource.getSelectedDates().length > 0 ? $event.oSource.getSelectedDates()[0].getStartDate().getDate() : 0` ) ) )
)->ele( n = `HorizontalLayout` ns = `l`
)->tag( `Label`
)->a( n = `text` v = `Selected Date (yyyy-mm-dd):`
)->a( n = `class` v = `labelMarginLeft`
)->tag( `Text`
)->a( n = `id` v = `selectedDate`
)->a( n = `text` v = client->_bind( selected_date )
)->a( n = `class` v = `labelMarginLeft` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
IF client->get_event( ) = `CAL_SELECT`.
" handleCalendarSelect: a second click on the SAME day clears the
" selection (removeSelectedDate), any other day becomes the new one;
" _updateText then formats it yyyy-MM-dd
DATA(year) = client->get_event_arg( ).
IF year IS INITIAL OR year = `0`.
selected_date = `No Date Selected`.
CLEAR last_selected.
ELSE.
DATA(picked) = |{ year }-{ CONV i( client->get_event_arg( 2 ) ) WIDTH = 2 ALIGN = RIGHT PAD = '0' }| &&
|-{ CONV i( client->get_event_arg( 3 ) ) WIDTH = 2 ALIGN = RIGHT PAD = '0' }|.
IF picked = last_selected.
selected_date = `No Date Selected`.
CLEAR last_selected.
" the original's removeSelectedDate( oSelectedDate ). selectedDates is
" written by the control itself, so clearing the model alone would
" leave the day highlighted - the aggregation has to be emptied on the
" control. This calendar is single-selection (the view sets neither
" singleSelection nor intervalSelection), so at most one DateRange
" exists and removeAllSelectedDates is exactly the same removal.
" Same wire as the sibling port 307's handleRemoveSelection.
client->follow_up_action( val = client->cs_event-control_by_id
t_arg = VALUE #( ( `calendar` ) ( `removeAllSelectedDates` ) ) ).
ELSE.
selected_date = picked.
last_selected = picked.
ENDIF.
ENDIF.
ENDIF.
ENDMETHOD.
ENDCLASS.
More in sap.ui.unified
- Item Eventing — Menu with Item Eventing
- Menu Eventing — Menu with Menu Eventing
- Calendar with navigatable legend — An example of adding navigatable legend to the calendar.
- Complex — File Uploader Example with Parameters
- Color Picker Popover — Example of ColorPicker in a popover using the thin wrapper control sap.ui.unified.ColorPi…
- multiple months — Calendar with more than one month
- Single Interval Selection — Calendar where the user can select an interval or entire week (either by selecting its we…
- Multiple Day Selection — Calendar where the user can select multiple days, entire weeks (either by selecting its w…
- Special Days with Legend — Calendar with special days and legend
- Color Picker - displayMode: Default — Basic example of Color Picker. Note that you have to set the Color Picker mode to HSL to…
- Color Picker - displayMode: Large — Basic example of Color Picker. Note that you have to set the Color Picker mode to HSL to…
- Menu with Selectable Items — Some menu items can be added to groups to allow single or multiple item selection.
On this page