Skip to content
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

New Frontend Infos #209

Merged
merged 4 commits into from
Jun 11, 2024
Merged
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
33 changes: 29 additions & 4 deletions src/z2ui5_cl_demo_app_122.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@
DATA device_os TYPE string.
DATA device_browser TYPE string.
DATA check_initialized TYPE abap_bool.
DATA device_system_desktop TYPE abap_bool.
DATA device_phone TYPE abap_bool.
DATA device_desktop TYPE abap_bool.
DATA device_tablet TYPE abap_bool.
DATA device_combi TYPE abap_bool.
DATA device_height type string.
DATA device_width type string.



PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
Expand All @@ -29,7 +36,7 @@
METHOD display_view.

DATA(view) = z2ui5_cl_xml_view=>factory( ).
client->view_display( view->shell(

Check failure on line 39 in src/z2ui5_cl_demo_app_122.clas.abap

View check run for this annotation

abaplint / abaplint

Method importing parameter "DEVICE_PHONE" does not exist

https://rules.abaplint.org/check_syntax

Check failure on line 39 in src/z2ui5_cl_demo_app_122.clas.abap

View check run for this annotation

abaplint / abaplint / abap_standard_readiness

Method importing parameter "DEVICE_PHONE" does not exist

https://rules.abaplint.org/check_syntax

Check failure on line 39 in src/z2ui5_cl_demo_app_122.clas.abap

View check run for this annotation

abaplint / abaplint / abap_cloud_readiness

Method importing parameter "DEVICE_PHONE" does not exist

https://rules.abaplint.org/check_syntax
)->page(
title = 'abap2UI5'
navbuttonpress = client->_event( val = 'BACK' )
Expand All @@ -48,7 +55,12 @@
ui5_gav = client->_bind_edit( ui5_gav )
ui5_theme = client->_bind_edit( ui5_theme )
ui5_version = client->_bind_edit( ui5_version )
device_system_desktop = client->_bind_edit( device_system_desktop )
device_phone = client->_bind_edit( device_phone )
device_desktop = client->_bind_edit( device_desktop )
device_tablet = client->_bind_edit( device_tablet )
device_combi = client->_bind_edit( device_combi )
device_height = client->_bind_edit( device_height )
device_width = client->_bind_edit( device_width )
)->simple_form( title = 'Information' editable = abap_true
)->content( 'form'
)->label( 'device_browser'
Expand All @@ -63,8 +75,21 @@
)->input( client->_bind_edit( ui5_theme )
)->label( `ui5_version`
)->input( client->_bind_edit( ui5_version )
)->label( `device_system_desktop`
)->input( client->_bind_edit( device_system_desktop )
)->label( `device_phone`
)->input( client->_bind_edit( device_phone )
)->label( `device_desktop`
)->input( client->_bind_edit( device_desktop )
)->label( `device_tablet`
)->input( client->_bind_edit( device_tablet )
)->label( `device_combi`
)->input( client->_bind_edit( device_combi )
)->label( `device_height`
)->input( client->_bind_edit( device_height )
)->label( `device_width`
)->input( client->_bind_edit( device_width )



)->stringify( ) ).

ENDMETHOD.
Expand Down
Loading