Dialog - Fullscreen
A dialog that can be toggled to fullscreen mode through a header button, by double-clicking the header, or by using the 'Shift+Ctrl+F' keyboard shortcut.
Z2UI5_CL_SMPC_APP_274
Controls
sap.m
UI5 1.149
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_274- Source file
z2ui5_cl_smpc_app_274.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.Dialog- Demo kit sample
sap.m.sample.DialogFullScreen- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.149
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: dialog, sap.m, dialogfullscreen, verticallayout, button, list, standardlistitem
Controls it builds
- sap.m.Button
- sap.m.Dialog
- sap.m.List
- sap.m.StandardListItem
- sap.ui.core.FragmentDefinition
- sap.ui.core.mvc.View
- sap.ui.layout.VerticalLayout
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_274.clas.abap — 300 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords dialog sap.m dialogfullscreen verticallayout button list standardlistitem
" @summary A dialog that can be toggled to fullscreen mode through a header button, by double-clicking the header, or by using the 'Shift+Ctrl+F' keyboard shortcut.
CLASS z2ui5_cl_smpc_app_274 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
TYPES: BEGIN OF ty_product,
name TYPE string,
quantity TYPE i,
END OF ty_product.
DATA t_products TYPE STANDARD TABLE OF ty_product WITH EMPTY KEY.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS model_init.
METHODS on_event.
METHODS popup_products_display
IMPORTING
resizable TYPE abap_bool
draggable TYPE abap_bool
sized TYPE abap_bool
begin_ok TYPE abap_bool.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_274 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
model_init( ).
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` v = `sap.m`
)->a( n = `xmlns:l` v = `sap.ui.layout`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->ele( n = `VerticalLayout` ns = `l`
)->a( n = `class` v = `sapUiContentPadding`
)->a( n = `width` v = `100%`
)->tag( `Button`
)->a( n = `text` v = `Dialog with Fullscreen Toggle`
)->a( n = `width` v = `280px`
)->a( n = `press` v = client->_event( `DIALOG` )
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Button`
)->a( n = `text` v = `Dialog (Resizable) with Fullscreen Toggle`
)->a( n = `width` v = `280px`
)->a( n = `press` v = client->_event( `RESIZABLE_DIALOG` )
)->a( n = `class` v = `sapUiSmallMarginBottom`
)->tag( `Button`
)->a( n = `text` v = `Dialog (Draggable and Resizable) with Fullscreen Toggle`
)->a( n = `width` v = `280px`
)->a( n = `press` v = client->_event( `DRAGGABLE_RESIZABLE_DIALOG` )
)->a( n = `class` v = `sapUiSmallMarginBottom` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
" the three controller-built Dialogs: same title, showFullScreenButton and
" product List, differing only in resizable / draggable / the fixed content
" size, and in the first one's extra Emphasized OK begin button
CASE client->get_event( ).
WHEN `DIALOG`.
popup_products_display( resizable = abap_false
draggable = abap_false
sized = abap_false
begin_ok = abap_true ).
WHEN `RESIZABLE_DIALOG`.
popup_products_display( resizable = abap_true
draggable = abap_false
sized = abap_true
begin_ok = abap_false ).
WHEN `DRAGGABLE_RESIZABLE_DIALOG`.
popup_products_display( resizable = abap_true
draggable = abap_true
sized = abap_true
begin_ok = abap_false ).
ENDCASE.
ENDMETHOD.
METHOD popup_products_display.
DATA(popup) = z2ui5_cl_ui5_view_builder=>factory( ).
DATA(dialog) = popup->ele( n = `FragmentDefinition` ns = `core`
)->a( n = `xmlns:core` v = `sap.ui.core`
)->a( n = `xmlns` v = `sap.m`
)->ele( `Dialog`
)->a( n = `title` v = `Available Products`
)->a( n = `showFullScreenButton` v = `true` ).
" only the resizable variants carry the fixed content size
IF sized = abap_true.
dialog->a( n = `contentWidth` v = `550px`
)->a( n = `contentHeight` v = `300px` ).
ENDIF.
IF resizable = abap_true.
dialog->a( n = `resizable` v = `true` ).
ENDIF.
IF draggable = abap_true.
dialog->a( n = `draggable` v = `true` ).
ENDIF.
dialog->ele( `content`
)->ele( `List`
)->a( n = `items` v = client->_bind( t_products )
)->tag( `StandardListItem`
)->a( n = `title` v = `{NAME}`
)->a( n = `counter` v = `{QUANTITY}`
)->end(
)->end( ).
" the first dialog is the only one with a begin button
IF begin_ok = abap_true.
dialog->ele( `beginButton`
)->tag( `Button`
)->a( n = `type` v = `Emphasized`
)->a( n = `text` v = `OK`
)->a( n = `press` v = client->follow_up_action( client->cs_event-popup_close )
)->end( ).
ENDIF.
dialog->ele( `endButton`
)->tag( `Button`
)->a( n = `text` v = `Close`
)->a( n = `press` v = client->follow_up_action( client->cs_event-popup_close ) ).
client->popup_display( popup->stringify( ) ).
ENDMETHOD.
METHOD model_init.
" the shared demo products.json /ProductCollection, all 123 rows; the
" dialogs' StandardListItem binds Name and Quantity only
t_products = VALUE #(
( name = `Notebook Basic 15` quantity = 10 )
( name = `Notebook Basic 17` quantity = 20 )
( name = `Notebook Basic 18` quantity = 10 )
( name = `Notebook Basic 19` quantity = 15 )
( name = `ITelO Vault` quantity = 15 )
( name = `Notebook Professional 15` quantity = 16 )
( name = `Notebook Professional 17` quantity = 17 )
( name = `ITelO Vault Net` quantity = 14 )
( name = `ITelO Vault SAT` quantity = 50 )
( name = `Comfort Easy` quantity = 30 )
( name = `Comfort Senior` quantity = 24 )
( name = `Ergo Screen E-I` quantity = 14 )
( name = `Ergo Screen E-II` quantity = 24 )
( name = `Ergo Screen E-III` quantity = 50 )
( name = `Flat Basic` quantity = 23 )
( name = `Flat Future` quantity = 22 )
( name = `Flat XL` quantity = 23 )
( name = `Laser Professional Eco` quantity = 21 )
( name = `Laser Basic` quantity = 8 )
( name = `Laser Allround` quantity = 9 )
( name = `Ultra Jet Super Color` quantity = 17 )
( name = `Ultra Jet Mobile` quantity = 18 )
( name = `Ultra Jet Super Highspeed` quantity = 25 )
( name = `Multi Print` quantity = 16 )
( name = `Multi Color` quantity = 5 )
( name = `Cordless Mouse` quantity = 25 )
( name = `Speed Mouse` quantity = 12 )
( name = `Track Mouse` quantity = 12 )
( name = `Ergonomic Keyboard` quantity = 50 )
( name = `Internet Keyboard` quantity = 35 )
( name = `Media Keyboard` quantity = 26 )
( name = `Mousepad` quantity = 12 )
( name = `Ergo Mousepad` quantity = 16 )
( name = `Designer Mousepad` quantity = 26 )
( name = `Universal card reader` quantity = 22 )
( name = `Proctra X` quantity = 15 )
( name = `Gladiator MX` quantity = 16 )
( name = `Hurricane GX` quantity = 13 )
( name = `Hurricane GX/LN` quantity = 5 )
( name = `Photo Scan` quantity = 8 )
( name = `Power Scan` quantity = 11 )
( name = `Jet Scan Professional` quantity = 13 )
( name = `Jet Scan Professional` quantity = 10 )
( name = `Copymaster` quantity = 10 )
( name = `Surround Sound` quantity = 20 )
( name = `Blaster Extreme` quantity = 15 )
( name = `Sound Booster` quantity = 50 )
( name = `Lovely Sound 5.1 Wireless` quantity = 12 )
( name = `Lovely Sound 5.1` quantity = 18 )
( name = `Lovely Sound Stereo` quantity = 21 )
( name = `Smart Office` quantity = 25 )
( name = `Smart Design` quantity = 26 )
( name = `Smart Network` quantity = 28 )
( name = `Smart Multimedia` quantity = 9 )
( name = `Smart Games` quantity = 13 )
( name = `Smart Internet Antivirus` quantity = 17 )
( name = `Smart Firewall` quantity = 19 )
( name = `Smart Money` quantity = 18 )
( name = `PC Lock` quantity = 14 )
( name = `Notebook Lock` quantity = 20 )
( name = `Web cam reality` quantity = 27 )
( name = `Screen clean` quantity = 17 )
( name = `Fabric bag professional` quantity = 14 )
( name = `Wireless DSL Router` quantity = 16 )
( name = `Wireless DSL Router / Repeater` quantity = 12 )
( name = `Wireless DSL Router / Repeater and Print Server` quantity = 12 )
( name = `USB Stick` quantity = 14 )
( name = `Travel Adapter` quantity = 10 )
( name = `Cordless Bluetooth Keyboard, english international` quantity = 13 )
( name = `Flat XXL` quantity = 10 )
( name = `Pocket Mouse` quantity = 20 )
( name = `PC Power Station` quantity = 22 )
( name = `Astro Laptop 1516` quantity = 23 )
( name = `Astro Phone 6` quantity = 28 )
( name = `Benda Laptop 1408` quantity = 27 )
( name = `Bending Screen 21HD` quantity = 23 )
( name = `Broad Screen 22HD` quantity = 5 )
( name = `Cerdik Phone 7` quantity = 19 )
( name = `Cepat Tablet 10.5` quantity = 17 )
( name = `Cepat Tablet 8` quantity = 24 )
( name = `Server Basic` quantity = 24 )
( name = `Server Professional` quantity = 26 )
( name = `Server Power Pro` quantity = 34 )
( name = `Family PC Basic` quantity = 10 )
( name = `Family PC Pro` quantity = 20 )
( name = `Gaming Monster` quantity = 24 )
( name = `Gaming Monster Pro` quantity = 25 )
( name = `7" Widescreen Portable DVD Player w MP3` quantity = 20 )
( name = `10" Portable DVD player` quantity = 21 )
( name = `Portable DVD Player with 9" LCD Monitor` quantity = 50 )
( name = `CD/DVD case: 264 sleeves` quantity = 26 )
( name = `Audio/Video Cable Kit - 4m` quantity = 16 )
( name = `Removable CD/DVD Laser Labels` quantity = 25 )
( name = `Beam Breaker B-1` quantity = 32 )
( name = `Beam Breaker B-2` quantity = 18 )
( name = `Beam Breaker B-3` quantity = 16 )
( name = `Play Movie` quantity = 15 )
( name = `Record Movie` quantity = 24 )
( name = `ITelo MusicStick` quantity = 15 )
( name = `ITelo Jog-Mate` quantity = 24 )
( name = `Power Pro Player 40` quantity = 23 )
( name = `Power Pro Player 80` quantity = 13 )
( name = `Flat Watch HD32` quantity = 16 )
( name = `Flat Watch HD37` quantity = 14 )
( name = `Flat Watch HD41` quantity = 13 )
( name = `Copperberry` quantity = 5 )
( name = `Silverberry` quantity = 9 )
( name = `Goldberry` quantity = 11 )
( name = `Platinberry` quantity = 12 )
( name = `ITelO FlexTop I4000` quantity = 11 )
( name = `ITelO FlexTop I6300c` quantity = 20 )
( name = `ITelO FlexTop I9100` quantity = 20 )
( name = `ITelO FlexTop I9800` quantity = 22 )
( name = `Smartphone Leather Case` quantity = 12 )
( name = `Smartphone Alpha` quantity = 13 )
( name = `Mini Tablet` quantity = 10 )
( name = `Camcorder View` quantity = 50 )
( name = `Tablet Pouch` quantity = 34 )
( name = `Tablet Pouch` quantity = 34 )
( name = `e-Book Reader ReadMe` quantity = 23 )
( name = `Smartphone Beta` quantity = 21 )
( name = `Maxi Tablet` quantity = 20 )
( name = `Flyer` quantity = 33 )
).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Date Picker - Value States — This example shows different DatePicker value states.
- Date Range Selection - Value States — This example shows different DateRangeSelection value states.
- Date Time Picker - Value States — This example shows different DateTimePicker value states.
- Date Range Selection - Open by Another Control — This example shows Date Range Selection which is opened by another control.
- Date Time Picker - Open by Another Control — This example shows Date Time Picker which is opened by another control.
- Message Dialog — Creating a dialog for showing UI messages. The possible messages types are: 'None', 'Succ…
- Tile Statuses — Shows the GenericTile while it is loading, if loading fails, and in disabled status.
- List - Growing — The Growing feature helps if your content is too big to be loaded/shown at once. It pagin…
- Table - ContextualWidth (Dynamic) — This example shows the container-based pop-in behavior. The container has dynamic width.
- Message Box — MessageBox is an easy way of displaying a message-type dialog to the user. You can displa…
- Image error handling with IllustratedMessage — Handle errors using the sap.m.IllustratedMessage with the error event.
- TextArea - Value Update — Since 1.30 the value property of sap.m.TextArea is not updated on every keystroke, but fi…
On this page