Skip to content

cleanup #361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
325 changes: 165 additions & 160 deletions src/z2ui5_cl_demo_app_000.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,20 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Tab Title'
press = client->_event( 'z2ui5_cl_demo_app_125' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Tab Favicon'
press = client->_event( 'z2ui5_cl_demo_app_171' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
Expand Down Expand Up @@ -268,6 +282,114 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `File API`
).

panel->generic_tile(
header = 'Download CSV'
subheader = 'Export Table as CSV'
press = client->_event( 'Z2UI5_CL_DEMO_APP_057' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Upload CSV'
subheader = 'Import CSV as internal Table'
press = client->_event( 'Z2UI5_CL_DEMO_APP_074' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'File Uploader'
subheader = 'Upload files to the Backend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_075' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'File Download'
subheader = 'Download files to the Frontend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_186' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `S-RTTI - Dynamic Typing`
).


panel->generic_tile(
header = 'Dynamic Types'
subheader = 'Use S-RTTI to send tables to the frontend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_061' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).


panel->generic_tile(
header = 'Dynamic Objects I'
subheader = 'Use S-RTTI to render different Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_131' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Dynamic Objects II'
subheader = 'User Generic Data Refs in Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_117' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Dynamic Objects III'
subheader = 'User Generic Data Refs in Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_185' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `Device Capabilities`
).

panel->generic_tile(
header = 'Geolocation'
subheader = ''
press = client->_event( 'z2ui5_cl_demo_app_120' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Frontend Infos'
subheader = ''
press = client->_event( 'z2ui5_cl_demo_app_122' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).


panel->generic_tile(
header = 'Camera & Picture'
press = client->_event( 'z2ui5_cl_demo_app_137' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

page = page2->panel(
expandable = abap_true
expanded = client->_bind_edit( ms_check_expanded-input )
Expand Down Expand Up @@ -1566,112 +1688,24 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

page = page2->panel(
expandable = abap_true
expanded = client->_bind_edit( ms_check_expanded-custom_controls )
headertext = `Features`
).


panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `File API`
).

panel->generic_tile(
header = 'Download CSV'
subheader = 'Export Table as CSV'
press = client->_event( 'Z2UI5_CL_DEMO_APP_057' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Upload CSV'
subheader = 'Import CSV as internal Table'
press = client->_event( 'Z2UI5_CL_DEMO_APP_074' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'File Uploader'
subheader = 'Upload files to the Backend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_075' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'File Download'
subheader = 'Download files to the Frontend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_186' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `S-RTTI - Dynamic Typing`
).


panel->generic_tile(
header = 'Dynamic Types'
subheader = 'Use S-RTTI to send tables to the frontend'
press = client->_event( 'Z2UI5_CL_DEMO_APP_061' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).


panel->generic_tile(
header = 'Dynamic Objects I'
subheader = 'Use S-RTTI to render different Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_131' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Dynamic Objects II'
subheader = 'User Generic Data Refs in Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_117' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Dynamic Objects III'
subheader = 'User Generic Data Refs in Subapps'
press = client->_event( 'Z2UI5_CL_DEMO_APP_185' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

* page = page2->panel(
* expandable = abap_true
* expanded = client->_bind_edit( ms_check_expanded-custom_controls )
* headertext = `Features`
* ).
*
*
*


panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `Custom Controls`
).

panel->generic_tile(
header = 'Tab Title'
press = client->_event( 'z2ui5_cl_demo_app_125' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).
* panel = page->panel(
* expandable = abap_false
* expanded = abap_true
* headertext = `Custom Controls`
* ).
*

panel->generic_tile(
header = 'Tab Favicon'
press = client->_event( 'z2ui5_cl_demo_app_171' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

* panel->generic_tile(
* header = 'Spreadsheet Control'
Expand Down Expand Up @@ -1725,65 +1759,36 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
* class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
* ).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `Device Capabilities`
).

panel->generic_tile(
header = 'Geolocation'
subheader = ''
press = client->_event( 'z2ui5_cl_demo_app_120' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Frontend Infos'
subheader = ''
press = client->_event( 'z2ui5_cl_demo_app_122' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).


panel->generic_tile(
header = 'Camera & Picture'
press = client->_event( 'z2ui5_cl_demo_app_137' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel = page->panel(
expandable = abap_false
expanded = abap_true
headertext = `Launchpad Integration`
).

panel->generic_tile(
header = 'Launchpad I'
subheader = `Read Startup Parameters`
press = client->_event( 'z2ui5_cl_demo_app_187' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Launchpad II'
subheader = `Set Title`
press = client->_event( 'z2ui5_cl_demo_app_188' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).

panel->generic_tile(
header = 'Launchpad III'
subheader = `Cross App Navigation`
press = client->_event( 'z2ui5_cl_demo_app_127' )
mode = 'LineMode'
class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
).
* panel = page->panel(
* expandable = abap_false
* expanded = abap_true
* headertext = `Launchpad Integration`
* ).
*
* panel->generic_tile(
* header = 'Launchpad I'
* subheader = `Read Startup Parameters`
* press = client->_event( 'z2ui5_cl_demo_app_187' )
* mode = 'LineMode'
* class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
* ).
*
* panel->generic_tile(
* header = 'Launchpad II'
* subheader = `Set Title`
* press = client->_event( 'z2ui5_cl_demo_app_188' )
* mode = 'LineMode'
* class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
* ).
*
* panel->generic_tile(
* header = 'Launchpad III'
* subheader = `Cross App Navigation`
* press = client->_event( 'z2ui5_cl_demo_app_127' )
* mode = 'LineMode'
* class = 'sapUiTinyMarginEnd sapUiTinyMarginBottom'
* ).

page = page2->panel(
expandable = abap_true
Expand Down
Loading