-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Sample: Select with icons (#398)
- Loading branch information
1 parent
3305db9
commit 8d829b2
Showing
3 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
class Z2UI5_CL_DEMO_APP_297 definition | ||
public | ||
create public . | ||
|
||
public section. | ||
|
||
interfaces IF_SERIALIZABLE_OBJECT . | ||
interfaces Z2UI5_IF_APP . | ||
|
||
types: | ||
BEGIN OF ty_product_collection, | ||
product_id TYPE string, | ||
name TYPE string, | ||
icon TYPE string, | ||
END OF ty_product_collection . | ||
|
||
data CHECK_INITIALIZED type ABAP_BOOL . | ||
data: | ||
lt_product_collection TYPE TABLE OF ty_product_collection . | ||
data SELECTED_PRODUCT type STRING . | ||
PROTECTED SECTION. | ||
|
||
DATA client TYPE REF TO z2ui5_if_client. | ||
|
||
METHODS z2ui5_set_data. | ||
METHODS display_view | ||
IMPORTING | ||
client TYPE REF TO z2ui5_if_client. | ||
METHODS on_event | ||
IMPORTING | ||
client TYPE REF TO z2ui5_if_client. | ||
METHODS z2ui5_display_popover | ||
IMPORTING | ||
id TYPE string. | ||
|
||
PRIVATE SECTION. | ||
ENDCLASS. | ||
|
||
|
||
|
||
CLASS Z2UI5_CL_DEMO_APP_297 IMPLEMENTATION. | ||
|
||
|
||
METHOD DISPLAY_VIEW. | ||
|
||
DATA(page_01) = z2ui5_cl_xml_view=>factory( )->shell( | ||
)->page( | ||
title = `abap2UI5 - Sample: Select - with icons` | ||
navbuttonpress = client->_event( 'BACK' ) | ||
shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack IS NOT INITIAL ) ). | ||
|
||
page_01->header_content( | ||
)->button( id = `button_hint_id` | ||
icon = `sap-icon://hint` | ||
tooltip = `Sample information` | ||
press = client->_event( 'CLICK_HINT_ICON' ) ). | ||
|
||
page_01->header_content( | ||
)->link( | ||
text = 'UI5 Demo Kit' | ||
target = '_blank' | ||
href = 'https://sapui5.hana.ondemand.com/sdk/#/entity/sap.m.Select/sample/sap.m.sample.SelectWithIcons' ). | ||
|
||
page_01->page( | ||
showheader = abap_false | ||
class = `sapUiContentPadding` | ||
)->content( | ||
)->select( | ||
forceselection = abap_false | ||
selectedkey = client->_bind( selected_product ) | ||
items = client->_bind( lt_product_collection ) | ||
)->item( | ||
)->list_item( key = '{PRODUCT_ID}' text = '{NAME}' icon = '{ICON}' | ||
)->get_parent( | ||
)->get_parent( | ||
)->get_parent( | ||
). | ||
|
||
client->view_display( page_01->stringify( ) ). | ||
|
||
ENDMETHOD. | ||
|
||
|
||
METHOD ON_EVENT. | ||
|
||
CASE client->get( )-event. | ||
WHEN 'BACK'. | ||
client->nav_app_leave( ). | ||
WHEN 'CLICK_HINT_ICON'. | ||
z2ui5_display_popover( `button_hint_id` ). | ||
ENDCASE. | ||
|
||
ENDMETHOD. | ||
|
||
|
||
METHOD Z2UI5_DISPLAY_POPOVER. | ||
|
||
DATA(view) = z2ui5_cl_xml_view=>factory_popup( ). | ||
view->quick_view( placement = `Bottom` width = `auto` | ||
)->quick_view_page( pageid = `sampleInformationId` | ||
header = `Sample information` | ||
description = `Illustrates the usage of a Select with icons` ). | ||
|
||
client->popover_display( | ||
xml = view->stringify( ) | ||
by_id = id | ||
). | ||
|
||
ENDMETHOD. | ||
|
||
|
||
METHOD Z2UI5_IF_APP~MAIN. | ||
|
||
me->client = client. | ||
|
||
IF check_initialized = abap_false. | ||
check_initialized = abap_true. | ||
display_view( client ). | ||
z2ui5_set_data( ). | ||
ENDIF. | ||
|
||
on_event( client ). | ||
|
||
ENDMETHOD. | ||
|
||
|
||
METHOD Z2UI5_SET_DATA. | ||
|
||
CLEAR selected_product. | ||
CLEAR lt_product_collection. | ||
|
||
selected_product = `HT-1001`. | ||
|
||
" Populate the internal tables | ||
lt_product_collection = VALUE #( | ||
( product_id = 'HT-1001' name = 'Notebook Basic 17' icon = 'sap-icon://paper-plane' ) | ||
( product_id = 'HT-1002' name = 'Notebook Basic 18' icon = 'sap-icon://add-document' ) | ||
( product_id = 'HT-1003' name = 'Notebook Basic 19' icon = 'sap-icon://doctor' ) | ||
( product_id = 'HT-1007' name = 'ITelO Vault' icon = 'sap-icon://sys-find-next') | ||
( product_id = 'HT-1010' name = 'Notebook Professional 15' icon = 'sap-icon://add-product') | ||
( product_id = 'HT-1011' name = 'Notebook Professional 17' icon = 'sap-icon://add-product') | ||
( product_id = 'HT-1020' name = 'ITelO Vault Net' icon = 'sap-icon://add-product' ) | ||
( product_id = 'HT-1021' name = 'ITelO Vault SAT' icon = 'sap-icon://add-product' ) | ||
( product_id = 'HT-1022' name = 'Comfort Easy' icon = 'sap-icon://add-product' ) | ||
( product_id = 'HT-1023' name = 'Comfort Senior' icon = 'sap-icon://add-product' ) | ||
). | ||
SORT lt_product_collection BY name. | ||
|
||
ENDMETHOD. | ||
ENDCLASS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>Z2UI5_CL_DEMO_APP_297</CLSNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>Select - with icons</DESCRIPT> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |