@@ -28,8 +28,8 @@ CLASS z2ui5_cl_demo_app_067 IMPLEMENTATION.
2828 IF check_initialized = abap_false.
2929 check_initialized = abap_true.
3030
31- numeric = ' 000000000012' .
32- amount = ' 123456789.123' .
31+ numeric = ` 000000000012` .
32+ amount = ` 123456789.123` .
3333 currency = `USD`.
3434
3535 ENDIF.
@@ -40,24 +40,24 @@ CLASS z2ui5_cl_demo_app_067 IMPLEMENTATION.
4040 ENDCASE.
4141
4242 DATA(page) = z2ui5_cl_xml_view=>factory( )->shell(
43- )->page( title = ' abap2UI5 - Currency Format'
43+ )->page( title = ` abap2UI5 - Currency Format`
4444 navbuttonpress = client->_event( |BACK| )
4545 shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack IS NOT INITIAL ) ).
4646
47- page->simple_form( title = ' Currency'
47+ page->simple_form( title = ` Currency`
4848 editable = abap_true
49- )->content( ' form'
50- )->title( ' Input'
51- )->label( ' Documentation'
52- )->link( text = ' https://sapui5.hana.ondemand.com/#/entity/sap.ui.model.type.Currency'
53- href = ' https://sapui5.hana.ondemand.com/#/entity/sap.ui.model.type.Currency'
54- )->label( ' One field'
49+ )->content( ` form`
50+ )->title( ` Input`
51+ )->label( ` Documentation`
52+ )->link( text = ` https://sapui5.hana.ondemand.com/#/entity/sap.ui.model.type.Currency`
53+ href = ` https://sapui5.hana.ondemand.com/#/entity/sap.ui.model.type.Currency`
54+ )->label( ` One field`
5555 )->input(
5656 |\{ parts: [ '{ client->_bind_edit( val = amount
5757 path = abap_true ) }', '{ client->_bind_edit(
5858 val = currency
5959 path = abap_true ) }'], type: 'sap.ui.model.type.Currency' \}|
60- )->label( ' Two field'
60+ )->label( ` Two field`
6161 )->input(
6262 |\{ parts: [ '{ client->_bind_edit( val = amount
6363 path = abap_true ) }', '{ client->_bind_edit(
@@ -68,19 +68,19 @@ CLASS z2ui5_cl_demo_app_067 IMPLEMENTATION.
6868 path = abap_true ) }', '{ client->_bind_edit(
6969 val = currency
7070 path = abap_true ) }'], type: 'sap.ui.model.type.Currency' , formatOptions: \{showNumber: false\} \}|
71- )->label( ' Default'
71+ )->label( ` Default`
7272 )->text(
7373 |\{ parts: [ '{ client->_bind_edit( val = amount
7474 path = abap_true ) }', '{ client->_bind_edit(
7575 val = currency
7676 path = abap_true ) }'], type: 'sap.ui.model.type.Currency' \}|
77- )->label( ' preserveDecimals:false'
77+ )->label( ` preserveDecimals:false`
7878 )->text( |\{ parts: [ '{ client->_bind_edit( val = amount
7979 path = abap_true ) }', '| && client->_bind_edit(
8080 val = currency
8181 path = abap_true ) &&
8282 |'], type: 'sap.ui.model.type.Currency' , formatOptions: \{ preserveDecimals : false \} \}|
83- )->label( ' currencyCode:false'
83+ )->label( ` currencyCode:false`
8484 )->text( |\{ parts: [ '{ client->_bind_edit( val = amount
8585 path = abap_true ) }', '| && client->_bind_edit(
8686 val = currency
@@ -102,14 +102,14 @@ CLASS z2ui5_cl_demo_app_067 IMPLEMENTATION.
102102 )->button( text = `send`
103103 press = client->_event( `BUTTON` ) ).
104104
105- page->simple_form( title = ' No Zeros'
105+ page->simple_form( title = ` No Zeros`
106106 editable = abap_true
107- )->content( ' form'
108- )->title( ' Input'
109- )->label( ' Documentation'
110- )->link( text = ' https://sapui5.hana.ondemand.com/sdk/#/api/sap.ui.model.odata.type.String%23methods/formatValue'
111- href = ' https://sapui5.hana.ondemand.com/sdk/#/api/sap.ui.model.odata.type.String%23methods/formatValue'
112- )->label( ' Numeric'
107+ )->content( ` form`
108+ )->title( ` Input`
109+ )->label( ` Documentation`
110+ )->link( text = ` https://sapui5.hana.ondemand.com/sdk/#/api/sap.ui.model.odata.type.String%23methods/formatValue`
111+ href = ` https://sapui5.hana.ondemand.com/sdk/#/api/sap.ui.model.odata.type.String%23methods/formatValue`
112+ )->label( ` Numeric`
113113)->input( value = client->_bind_edit( val = numeric )
114114
115115)->label( `Without leading Zeros`
0 commit comments