Michael Zinnöcker
26c9732fe4
sap.z2ui5.contextId not initialized on exit(termination) ( #1455 )
2024-09-25 17:02:06 +02:00
oblomov-dev
ff3bfc6e66
refactoring ( #1452 )
2024-09-25 10:18:01 +02:00
Francisco Milán
3e5f73d555
Add "enableformattedtext" to message_strip method. ( #1451 )
...
* Add "enableformattedtext" to message_strip method.
* Add "enableformattedtext" to message_strip method2
* Add "enableformattedtext" to message_strip method3
* Add "enableformattedtext" to message_strip method4
2024-09-25 08:48:48 +02:00
Francisco Milán
3a4192d3e0
Add "type" to method "object_list_item" ( #1450 )
2024-09-25 07:57:18 +02:00
oblomov-dev
1c9efb3561
update ( #1449 )
...
* update
* Update playwright.yml
2024-09-24 19:47:19 +02:00
oblomov-dev
a11bad5b2c
Launchpad fix ( #1448 )
...
* launchpad fix
* fix scroling cc
2024-09-24 18:54:10 +02:00
oblomov-dev
e9007c05da
New handler ( #1446 )
...
* new handler
* update
* update
* update
* update
* update
* fix statefulness
* update
* update
* update
2024-09-24 10:19:25 +02:00
oblomov-dev
6c0843cb06
refactoring debug tools ( #1445 )
...
* refactoring debug tools
* update
2024-09-22 16:41:38 +02:00
oblomov-dev
498cdc7fc7
refactoring ( #1444 )
2024-09-22 14:18:01 +02:00
oblomov-dev
ef4494bdb9
New UI5 frontend ( #1443 )
...
* Refactoring due to added Component support, slightly fixed session handl (#1439 )
* Refactoring due to added Component support, slightly fixed session handl
* Update src/01/02/z2ui5_cl_core_http_get.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
---------
Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* session fix + tokens
* update stateful error
* pagehide for ios devices, beforeunload for desktop and others (#1440 )
* fixes
* fixes excpetions
* update
* lint fixes
* replaced root view with app for launchpad compati
* fix missed latest changes in init - added again
* update index html
* update
* update app
* update
* Update src/01/02/z2ui5_cl_core_http_get.clas.locals_imp.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update src/01/02/z2ui5_cl_core_http_get.clas.locals_imp.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* fixes
* lint fixes
* update
* Update src/01/02/z2ui5_cl_core_app.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update changelog.txt
* update
* Update src/01/02/z2ui5_cl_core_app.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
---------
Co-authored-by: Michael Zinnöcker <29286643+mzinnoecker@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-22 13:53:11 +02:00
Francisco Milán
1c3d88fa6a
Add missing parameters to method "step_input" ( #1441 )
2024-09-22 09:54:09 +02:00
oblomov-dev
4940a26a46
refactoring - filter functions - sticky functions ( #1437 )
...
* refactoring - filter fucntions - sticky functions
* update
* udpate
* update
2024-09-17 19:38:43 +02:00
oblomov-dev
1fba55457c
session-stickyness ( #1435 )
...
* Added Component and Session Stateful (#1433 )
- Added Component support (TODO refactoring sap.z2ui5 and view handling -> instead of .placeAt use mainView of component manifest)
- Added Session Stateful support
*add the following lines to your REST handler in order to support stateful session handling*
'''abap
if attributes-stateful-switched = abap_true.
server->set_session_stateful( stateful = attributes-stateful-active ).
endif.
'''
And here is an ABAP example class for testing session handling
'''abap
"! <p class="shorttext synchronized" lang="en">Session Demo</p>
class z2ui5_cl_demo_app_session definition
public
create public.
public section.
interfaces z2ui5_if_app.
data instance_counter type i read-only.
data check_initialized type abap_bool read-only.
data session_is_stateful type abap_bool read-only.
data session_text type string read-only.
protected section.
private section.
methods initialize_view
importing
client type ref to z2ui5_if_client.
methods on_event
importing
client type ref to z2ui5_if_client.
methods set_session_stateful
importing
client type ref to z2ui5_if_client
stateful type abap_bool.
endclass.
class z2ui5_cl_demo_app_session implementation.
method z2ui5_if_app~main.
if check_initialized = abap_false.
check_initialized = abap_true.
initialize_view( client ).
endif.
on_event( client ).
endmethod.
method initialize_view.
set_session_stateful( client = client stateful = abap_true ).
data(view) = z2ui5_cl_xml_view=>factory( ).
data(page) = view->shell( )->page(
title = `abap2UI5 - Sample: Sticky Session`
navbuttonpress = client->_event( 'BACK' )
shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack is not initial ) ).
data(vbox) = page->vbox( ).
vbox->info_label( text = client->_bind( session_text ) ).
data(hbox) = vbox->hbox( alignitems = 'Center' ).
hbox->label( text = 'press button to increment counter in backend session' class = 'sapUiTinyMarginEnd' ).
hbox->button(
text = client->_bind( instance_counter )
press = client->_event( 'INCREMENT' )
type = 'Emphasized' ).
hbox = vbox->hbox( ).
hbox->button(
text = 'End session'
press = client->_event( 'END_SESSION' ) ).
hbox->button(
text = 'Start session again'
press = client->_event( 'START_SESSION' ) ).
client->view_display( view->stringify( ) ).
endmethod.
method on_event.
case client->get( )-event.
when 'BACK'.
client->nav_app_leave( ).
when 'INCREMENT'.
instance_counter = lcl_static_container=>increment( ).
client->view_model_update( ).
when 'END_SESSION'.
set_session_stateful( client = client stateful = abap_false ).
when 'START_SESSION'.
set_session_stateful( client = client stateful = abap_true ).
endcase.
endmethod.
method set_session_stateful.
client->set_session_stateful( stateful ).
session_is_stateful = stateful.
if stateful = abap_true.
session_text = 'Session ON (stateful)'.
else.
session_text = 'Session OFF (stateless)'.
endif.
client->view_model_update( ).
endmethod.
endclass.
'''
* Update z2ui5_cl_core_http_get.clas.abap (#1434 )
updated to reflect latest changes (sorry some local changes were los)
* lint fix
* lint fix
* xml fix
---------
Co-authored-by: Michael Zinnöcker <29286643+mzinnoecker@users.noreply.github.com>
2024-09-16 16:45:41 +02:00
oblomov-dev
e9d557737c
refactoring ( #1431 )
2024-09-15 18:37:38 +02:00
oblomov-dev
fd5183b16b
refactoring ( #1430 )
2024-09-15 18:00:25 +02:00
oblomov-dev
ae603290cb
Update handler ( #1428 )
...
* update handler
* update handler
* update
* lint fixes
* update
* Update src/01/02/z2ui5_cl_core_http_get.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* update
* Update src/01/02/z2ui5_cl_core_http_get.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
---------
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-14 10:39:27 +02:00
Christian Günter
b7b464d981
Popup to select: New feature multiselect ( #1427 )
...
* popup to select: enable mutliselect
fixup
* allow preselect
2024-09-13 17:20:49 +02:00
Christian Günter
ba47b24f3a
New property title for z2ui5_cl_pop_table ( #1426 )
2024-09-13 11:54:11 +02:00
Francisco Milán
c83640913d
Preparation for new Demo Flexible sizing - Toolbar ( #1419 )
...
* Preparation for new Demo Flexible sizing - Toolbar
* Preparation for new Demo (2)
* Preparation for new Demo (3)
* Preparation for new Demo (4)
* Preparation for new Demo (5)
2024-09-12 09:15:33 +02:00
oblomov-dev
622c19c8b6
Refactoring ( #1417 )
...
* refactoring
* update
* Update README.md
* Update README.md
* Update README.md
* Update README.md
* Update README.md
* Update z2ui5_cl_core_http_get2.clas.abap
* lint fix
* update
* Update abaplint.jsonc
2024-09-12 00:35:07 +02:00
oblomov-dev
83fcc9604f
fix namespaces ( #1415 )
2024-09-11 15:34:46 +02:00
Christian Günter
430db60fdd
add class property to table ( #1412 )
2024-09-11 15:04:57 +02:00
oblomov-dev
fddf31e8b1
update setSizeLimit ( #1398 )
...
* update setSizeLimit
* Update src/02/z2ui5_cl_xml_view.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* update
---------
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-09 20:00:41 +02:00
github-actions[bot]
fcda388222
ajson, Automatic Update ( #1397 )
...
* [create-pull-request] automated change
* Update README.md
---------
Co-authored-by: oblomov-dev <oblomov-dev@users.noreply.github.com>
Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
2024-09-09 07:37:46 +02:00
oblomov-dev
f01f1ef57e
update hello world ( #1392 )
...
* update hello world
* Update README.md
2024-09-08 19:18:19 +02:00
oblomov-dev
71ea2631b6
language version fix ( #1389 )
2024-09-08 17:25:19 +02:00
oblomov-dev
7f2fe77b37
update typess ( #1386 )
2024-09-08 09:48:32 +02:00
oblomov-dev
d8bacf4f73
Update lint fixes ( #1384 )
...
* update lint fixes
* Update abaplint-abap_cloud_readiness.jsonc
* Update abaplint-abap_cloud_readiness.jsonc
2024-09-07 17:34:17 +02:00
oblomov-dev
38d5362192
Update abaplint.jsonc ( #1383 )
...
* Update abaplint.jsonc
* lint fixes
* Update src/01/00/02/z2ui5_cl_abap_api.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update src/01/00/02/z2ui5_cl_abap_api.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* abaplint fixes
* Update abaplint.jsonc
* lint fix
---------
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-09-07 16:57:14 +02:00
oblomov-dev
860f03d05e
update ajson mirror ( #1379 )
2024-09-07 12:56:21 +02:00
oblomov-dev
ec38b0a496
Json time date fix ( #1377 )
...
* json time date fix
* update
* update
2024-09-07 09:06:57 +02:00
oblomov-dev
90c680c923
abaplint fixes ( #1376 )
...
* abaplint fixes
* update
2024-09-06 15:31:22 +02:00
oblomov-dev
6a6b2ad342
ws extension ( #1374 )
...
* ws extension
* update
2024-09-06 14:03:24 +02:00
oblomov-dev
05a05eb03f
fix binding with invalid dates and time ( #1373 )
...
build_downport / build_downport (push) Has been cancelled
* fix binding with invalid dates and time
* update
* update
2024-09-05 10:41:19 +02:00
Francisco Milán
2ee262de29
selected_key as OPTIONAL - method segmented_button ( #1370 )
2024-09-05 06:57:13 +02:00
oblomov-dev
27f2a3822c
fix url ( #1369 )
...
build_downport / build_downport (push) Waiting to run
* fix url
* Delete ci/abaplint-max.jsonc
* update versions
2024-09-04 22:21:23 +02:00
oblomov-dev
a93dd6fc16
Update abaplint.jsonc ( #1367 )
...
* Update abaplint.jsonc
* Update abaplint.jsonc
* Update abaplint.jsonc
* update
* update
2024-09-04 22:10:48 +02:00
oblomov-dev
31869ba1a2
cleanup ( #1368 )
2024-09-04 22:01:32 +02:00
oblomov-dev
dd465ed14d
abaplint fixes ( #1365 )
2024-09-04 21:41:35 +02:00
oblomov-dev
1f68926144
cleanup ( #1364 )
2024-09-04 21:02:19 +02:00
oblomov-dev
58f9a80553
Cleanup ( #1362 )
...
build_downport / build_downport (push) Waiting to run
* cleanup
* update
* update
* update links
2024-09-04 10:20:58 +02:00
oblomov-dev
3220f107e0
Cleanup ( #1361 )
...
* update naming
* cleanup
* cleanup
* cleanup
2024-09-04 09:35:49 +02:00
oblomov-dev
8fbefa0396
cleanup ( #1360 )
build_downport / build_downport (push) Waiting to run
2024-09-03 23:52:51 +02:00
ABAP for years :)
3df6f3b3c0
Progress Indicator Property Visibility ( #1359 )
...
build_downport / build_downport (push) Waiting to run
* Progress Indicator Property Visibility
Addes Progress Indicator Property Visibility
* Update src/02/z2ui5_cl_xml_view.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update src/02/z2ui5_cl_xml_view.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* renamed zqmcafw_cl_util to z2ui5_cl_util
---------
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
Co-authored-by: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com>
2024-09-03 09:48:54 +02:00
Francisco Milán
eb07345650
Add 4 parameters to method "header_container" ( #1356 )
build_downport / build_downport (push) Waiting to run
2024-09-01 20:46:56 +02:00
oblomov-dev
ebca4a691a
Cleanup ( #1355 )
...
build_downport / build_downport (push) Has been cancelled
* update package structure
* update name
2024-08-31 12:52:43 +02:00
oblomov-dev
4d394939d1
Data loss feature ( #1354 )
...
build_downport / build_downport (push) Waiting to run
* Data loss protection with dirty flag (#1352 )
* update data loss feature
---------
Co-authored-by: Christian Günter <christianguenter@googlemail.com>
2024-08-31 10:25:20 +02:00
Francisco Milán
59d0bed18a
Add method "tiles" ( #1349 )
build_downport / build_downport (push) Waiting to run
2024-08-30 08:26:04 +02:00
oblomov
25fe147354
small fixes ( #1345 )
build_downport / build_downport (push) Waiting to run
2024-08-29 08:31:28 +02:00
Francisco Milán
2f82cf972c
Add "class" and "press" to method "feed_content" ( #1346 )
build_downport / build_downport (push) Waiting to run
2024-08-28 23:29:06 +02:00