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
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
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
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
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
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
oblomov
25fe147354
small fixes ( #1345 )
build_downport / build_downport (push) Waiting to run
2024-08-29 08:31:28 +02:00
oblomov
f3aa88ce7d
small_fixes_and_setup ( #1343 )
...
build_downport / build_downport (push) Waiting to run
* small_fixes_and_setup
* update
* Update abaplint.jsonc
2024-08-27 17:11:07 +02:00
oblomov
bab4ae66d0
correct descriptions ( #1338 )
...
* correct descriptions
* Update src/01/04/z2ui5_cl_cc_scrolling.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-08-26 17:40:08 +02:00
oblomov
a8172d28ae
Refactoring core ( #1334 )
...
* fix-file-uploader
* assign obsolete to seperated repository
* update
* refactoring
* Update README.md
* Update README.md
* Update README.md
2024-08-26 16:43:03 +02:00
oblomov
a11eb7317c
small warning fixes ( #1332 )
build_downport / build_downport (push) Waiting to run
2024-08-26 08:07:43 +02:00
oblomov
c70baa86f2
split custom controls ( #1330 )
...
* split custom controls
* update
* Update package.json
2024-08-26 07:15:34 +02:00
oblomov
0e7ba63842
Refactoring ( #1329 )
...
build_downport / build_downport (push) Waiting to run
* refactoring
* update
* update
* refactoring folder
* update
* update
* update
* package description
* update
* refactoring
2024-08-25 18:24:52 +02:00
oblomov
d9ae1b2f3f
Refactoring ( #1326 )
...
build_downport / build_downport (push) Waiting to run
* refactoring
* renaming
* Update changelog.txt
2024-08-24 17:07:25 +02:00
oblomov
4ec0ad4531
Bugfix color control ( #1325 )
...
build_downport / build_downport (push) Waiting to run
* bugfix color control
* change hello world app package
2024-08-24 10:11:19 +02:00
oblomov
bdb985af6c
bugfixes and refactoring ( #1323 )
...
* bugfixes and refactoring
* update
* update package structure
* update
* update
* update package assignment
* update
* update
* update
* update package structure
2024-08-24 09:07:34 +02:00
abapsheep
e55777569e
Update ( #1318 )
...
build_downport / build_downport (push) Waiting to run
* Update
Error with DeepStructures
Fixes in Layout
* Update
* Update
---------
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-08-22 11:52:47 +02:00
oblomov
b3af7e6ba4
cleanup ( #1317 )
build_downport / build_downport (push) Waiting to run
2024-08-21 15:53:25 +02:00
Francisco Milán
6745789169
Add property id to step_input & press to news_content ( #1311 )
...
build_downport / build_downport (push) Waiting to run
* Add property id to step_input (1)
* Add press to news_content (1)
---------
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-08-15 10:21:14 +02:00
oblomov
b9ee90644b
fix fixval ( #1312 )
...
* fix fixval
* Update src/01/01/z2ui5_cl_util_api.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update src/01/01/z2ui5_cl_util_api.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* update lint fixes
---------
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-08-15 10:07:29 +02:00
oblomov
9fb082ecd5
Update README.md ( #1309 )
...
* Update README.md
* Update z2ui5_cl_core_app_startup.clas.abap
* Update README.md
2024-08-14 16:19:37 +02:00
oblomov
d6ea61aa7c
short http get method ( #1268 )
2024-07-13 12:53:38 +02:00
oblomov
580e366f45
bugfix mapper comparison ( #1265 )
build_downport / build_downport (push) Has been cancelled
2024-07-11 11:05:10 +02:00
Christian
c47f9ee7c1
Fix filter walk order for arrays (based on array index) ( #1261 )
...
build_downport / build_downport (push) Has been cancelled
* Fix filter walk order for arrays
Fix filter walk order for arrays (based on array index)
* removed empty line
2024-07-09 15:39:47 +02:00
abapsheep
c83ac391eb
Various bug fixes ( #1243 )
2024-07-02 13:17:50 +02:00
oblomov
deba481cce
fixes ( #1238 )
...
* fixes
* Update z2ui5_cl_stmpncfctn_api.clas.abap
2024-06-29 19:31:14 +02:00
oblomov
6c9a4bcbc6
update startup app ( #1217 )
2024-06-18 14:29:27 +02:00
abapsheep
a504911508
Update rtti_get_t_attri_by_table_name ( #1211 )
...
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-17 14:14:52 +02:00
oblomov
f60e44c178
lp title fix ( #1210 )
2024-06-17 12:40:33 +02:00
oblomov
fb10027bed
fix steampuncification ( #1195 )
...
* fix steampuncification
* update
2024-06-13 15:07:24 +02:00
oblomov
dcc03a350b
fixes f4 help ( #1192 )
2024-06-13 14:21:11 +02:00
oblomov
5fd16e1e5f
fix dfies ( #1186 )
2024-06-12 21:24:01 +02:00
choper725
d2fe17a7e7
form validator feature - WIP ( #1185 )
...
* form validator feature - WIP
as of work of Mauricio Lauffer
https://github.com/mauriciolauffer/openui5-validator/tree/master
adapted by choper725
* fix
* fix again
* abaplint fix
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
---------
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-12 21:17:04 +02:00
abapsheep
64f4315612
New Layout Update ( #1183 )
...
* New Layout Update
* Layout Update
* Update new Layout
* Update src/01/01/z2ui5_cl_util_api.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update New Layout
* Update new Layout
* Update and F4-Help
* Update src/02/02/z2ui5_cl_pop_f4_help.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* Update
* Update
* Update abaplint.jsonc
* Update abaplint.jsonc
* fix unit tests
* fix unit test
* fix
---------
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-06-12 21:12:24 +02:00
oblomov
fba8b8c548
Simplification binding logic and message handling ( #1179 )
...
* simplification binding logic and message handling
* fix
2024-06-11 11:20:30 +02:00
abapsheep
c5f1960f17
New Frontend Infos ( #1178 )
...
* New Layout Fix
* lint fix
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* lint fix
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* New Popup - Fix
* Update src/02/02/z2ui5_cl_pop_layout_v2.clas.abap
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
* New Layout
* Update abaplint.jsonc
* Added additional Frontend Infos
-Device Type
-Resolution
* Update Frontend Infos
---------
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
2024-06-11 10:35:43 +02:00
choper725
7d79bd6161
two_way binding based on param in core_types ( #1172 )
2024-06-07 21:59:55 +02:00
oblomov
60710d01e6
util_rtti fix ( #1169 )
...
* util_rtti fix
* fix
* fix
2024-06-07 16:39:39 +02:00
abapsheep
39eac5c23c
New Layout ( #1167 )
...
Co-authored-by: Viktor Hoffmann <Viktor.Hoffmann@swisskrono.com>
2024-06-07 13:29:15 +02:00
oblomov
29dc9b6f65
small adjustments ( #1165 )
...
* small adjustments
* lint fixes
2024-06-07 11:48:41 +02:00
oblomov
a78952d43d
focus + v2.x fixes ( #1160 )
...
* focus + v2.x fixes
* fix debugger
2024-06-06 21:09:03 +02:00
oblomov
31ad83b574
focus fix ( #1159 )
2024-06-06 15:00:22 +02:00
choper725
629bd39404
various changes ( #1156 )
...
xml view
http get
client intf
2024-06-05 01:30:10 +02:00
oblomov
7035dea63d
update link ( #1153 )
...
* update link
* Update src/01/03/z2ui5_cl_core_app_startup.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-06-01 22:13:43 +02:00
oblomov
77688f247e
update contact ( #1150 )
2024-06-01 15:56:35 +02:00
oblomov
f19b23f35c
model fixes ( #1140 )
...
* model fixes
* update device demo
2024-05-24 09:51:34 +02:00
oblomov
a53295c8d2
Launchpad and data binding fixes ( #1133 )
...
* launchpad and data binding fixes
* fixes
* fix naming
* fix binding
* lint fixes
2024-05-22 14:19:39 +02:00
oblomov
888802e242
launchpad fixes ( #1129 )
2024-05-20 14:55:10 +02:00
oblomov
cb9320243d
fix binding ( #1125 )
...
* fix binding
* update
2024-05-13 10:38:20 +02:00
oblomov
da5e66afc1
launchpad fix ( #1124 )
2024-05-10 09:42:11 +02:00
choper725
75b4f4114b
message toast fix - xml additions - styled popover ( #1122 )
2024-05-06 23:01:44 +02:00
oblomov
5dc45966a2
small adjustments - steampuncification ( #1121 )
...
* small adjustments
* update
* update
2024-05-06 13:53:50 +02:00
oblomov
50d15cdb8a
cleanup ( #1118 )
2024-05-05 12:07:11 +02:00
choper725
a1467bacc5
tidy t_arg object ( #1116 )
2024-05-04 12:13:13 +02:00
oblomov
7fb2e5687c
t_arg handling with objects ( #1115 )
2024-05-03 00:32:48 +02:00
choper725
96190bc009
generic messageBox implement add properties ( #1111 )
2024-04-29 23:15:06 +02:00
choper725
1dd11a1495
change style of toast from predefined class ( #1110 )
2024-04-29 19:12:08 +02:00
choper725
7904dad027
impleement full message toast properties ( #1109 )
2024-04-29 11:11:15 +02:00
choper725
0ed42cd029
xml view additions + openui5 sdk global error ( #1108 )
2024-04-29 03:12:44 +02:00
oblomov
7d5c4a1ccc
renaming feature ( #1104 )
...
* Update abaplint_rename.jsonc
* update renaming
* Delete src/01/01/z2ui5_t_util_01.tabl.xml
* Delete src/01/02/01/z2ui5_t_core_01.tabl.xml
* Update abaplint_rename.jsonc
* Update abaplint_rename.jsonc
* update
* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.xml
* Delete src/01/02/01/z2ui5_cl_core_dissolve_srv.clas.testclasses.abap
* update
* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.abap
* Delete src/01/05/z2ui5_cl_cc_demo_output.clas.xml
* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.abap
* Delete src/01/05/z2ui5_cl_cc_camera_picture.clas.xml
* update
* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.abap
* Delete src/01/05/z2ui5_cl_cc_message_manager.clas.xml
* update
* update
* fix
2024-04-24 09:02:38 +02:00
choper725
08c15390bf
spreadsheet cc sdk check fixes ( #1101 )
2024-04-24 00:00:28 +02:00
choper725
e8131d97cd
update spreadsheet cc ( #1095 )
2024-04-21 22:34:09 +02:00
oblomov
7d797349f6
Shorten length filenames ( #1092 )
...
* shorten length filenames
* update
* cleanup
* cleanup
* update action
* action
* action
* update
2024-04-21 16:14:44 +02:00
oblomov
5b407b1058
fix binding ( #1088 )
2024-04-18 15:25:37 +02:00
oblomov
13120c3637
Fix binding ( #1085 )
...
* fix binding
* Update changelog.txt
2024-04-17 22:38:55 +02:00
Christian Günter
04958e02fa
fix CX_SY_DYN_CALL_ILLEGAL_TYPE ( #1083 )
2024-04-16 20:15:34 +02:00
Christian Günter
cef8f1c9c8
more fixes for renaming ( #1082 )
...
* more fixes for renaming
* cleanup
* fix rtti_get_intfname_by_ref
2024-04-16 18:46:38 +02:00
Christian Günter
79c078021b
catch cx_sy_rtti_syntax_error ( #1081 )
2024-04-16 17:31:57 +02:00
Christian Günter
b9177d402b
Use static types instead of magic constants ( #1079 )
...
* Use static types instead of magic constants
* fixup
* Update z2ui5_cl_core_app_startup.clas.abap
---------
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-04-16 17:02:21 +02:00
oblomov
45ec0db10f
renaming fixes ( #1080 )
2024-04-16 16:54:07 +02:00
oblomov
40a6466c2d
renaming fixes ( #1078 )
2024-04-16 16:28:54 +02:00
choper725
4995ef7a24
spreadsheet columnconfig as a property of xml view ( #1070 )
...
add column config array to custom control as a binded table instead of local json string.
(not breaking - kept the previous implementation version active as well)
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-04-11 09:57:24 +02:00
choper725
db6df23594
few updaes + download b64 file event client functi ( #1068 )
...
update CC
add download B64 event frontend
2024-04-10 21:25:42 +02:00
oblomov
6cf397e986
fix binding ( #1067 )
2024-04-09 17:54:33 +02:00
oblomov
45ee905bca
fix binding ( #1065 )
...
* fix binding
* fix downport
2024-04-09 15:50:03 +02:00
oblomov
26977a6214
Add unit test ( #1060 )
...
* add unit test
* lint fixes
2024-04-05 18:07:14 +02:00
oblomov
7851c5e03a
fix binding for sql monitor ( #1048 )
...
* fix binding for sql monitor
* update
2024-03-29 18:35:49 +01:00
oblomov
b4fed491d5
fix srtti types ( #1047 )
...
* fix srtti types
* update
2024-03-29 16:54:52 +01:00
oblomov
b65493b3dd
fix app search ( #1042 )
2024-03-25 19:04:29 +01:00
oblomov
8283bf7454
fix clear binding ( #1041 )
2024-03-23 17:24:07 +01:00
oblomov
7af2e9d18f
z2ui5_cl_stmpncfctn_api.clas.abap aktualisieren ( #1038 )
2024-03-23 02:39:12 +01:00
oblomov
67557210fa
Refactoring ( #1036 )
...
* refactoring
* Update README.md
2024-03-21 20:26:17 +01:00
choper725
69e93302aa
various updates ( #1032 )
2024-03-20 13:23:45 +00:00
oblomov
9270f6fb57
follow up action ( #1031 )
2024-03-20 12:26:36 +01:00
choper725
29b9072f4e
add setTimeout for follow_up_action & update xml v ( #1024 )
...
add setTimeout for follow_up_action, in order to finish set promises by controls.
update xml view
2024-03-18 14:51:42 +01:00
choper725
f615819a2b
follow_up_action fixes and enhance ( #1022 )
2024-03-17 22:11:15 +01:00
oblomov
4cc928b8d3
fix follow up action ( #1021 )
2024-03-17 20:35:39 +01:00
oblomov
47475aa1d7
z2ui5_cl_core_http_get.clas.abap aktualisieren ( #1020 )
2024-03-17 16:58:34 +01:00
oblomov
5943fdded5
follow up action ( #1019 )
...
* follow up action
* 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-03-17 16:49:29 +01:00
oblomov
79b05da611
netsed views two way binding fix ( #1013 )
2024-03-15 03:46:32 +01:00
choper725
b7a6ba638b
update popup logic + popover on all views ( #1012 )
2024-03-15 02:44:06 +01:00
oblomov
d2f242d38e
added new booleans ( #1011 )
...
* added new booleans
* fix lint
2024-03-14 13:36:18 -04:00
oblomov
2014ea40ce
new version and fixes ( #1005 )
2024-03-11 11:14:04 -04:00
oblomov
ace5fbfe7e
popup-html ( #1003 )
2024-03-10 17:09:15 -04:00
oblomov
0a6b38e7ee
view model update event logic ( #1002 )
2024-03-09 15:11:06 -05:00
oblomov
e48640eff0
btp compatibility ( #1001 )
...
* btp compatibility
* lint fixes+popup select
* update lint fixes
* update
* update
2024-03-08 16:55:06 -05:00
Christian Günter
b7ffcb5dcc
Improve class F4 dialog - add class description ( #1000 )
...
* improve class F4 dialog
* steampunkify
* fixup
* fixup
* fixup
2024-03-08 16:26:13 -05:00
choper725
09edad61dc
update http_get + add property to xml view ( #996 )
...
1.
adjusted popup + popover fragment assign to sap.z2ui5.oViewPopup position in order to access view object before popup open (being able to run js on popup dom object before dialog open).
2. created a Fragment global var to get dom object as oViewPopup is not the actual view of the fragment.
2024-03-06 11:19:14 +01:00
oblomov
89374e399c
gantt enhancements ( #995 )
2024-03-05 16:06:56 +01:00
choper725
d63862b286
debuggin tools fix + toggleState on tree ( #992 )
2024-03-04 23:57:03 +01:00
oblomov
8615e1aaba
low release adjustments for popups ( #989 )
...
* refactoring
* low release compatibility
* update
* update
* update
* update
2024-03-04 16:58:36 +01:00
oblomov
9bda034436
ajson fix type p ( #985 )
2024-03-02 23:35:38 +01:00
oblomov
bb9bea912f
reanming+new version ( #984 )
2024-03-01 13:54:01 +01:00
oblomov
c045cd1805
refactoring ( #980 )
...
* refactoring
* update
* update
2024-03-01 09:02:37 +01:00
choper725
76eb2bf6d5
imagemapster cc fixes ( #979 )
2024-03-01 00:15:09 +01:00
oblomov
3a487e044b
Update webc renderer ( #978 )
...
* update webc renderer
* update
* update
* Update src/01/90/z2ui5_cl_test_app_131.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-02-29 19:00:19 +01:00
oblomov
6f64e6bf27
low release compatibility ( #977 )
2024-02-29 16:27:52 +01:00
oblomov
0a0673650f
fix json handling type p ( #976 )
...
* fix json handling type p
* fix
2024-02-29 13:33:19 +01:00
abapsheep
a85f1a1dc8
Update z2ui5_cl_util_api.clas.abap ( #974 )
...
* Update z2ui5_cl_util_api.clas.abap
Correction when dissolving deep structures
* Update z2ui5_cl_util_api.clas.abap
Correction when dissolving deep structures
2024-02-29 10:35:41 +01:00
oblomov
fc17fc5dc3
fix local binding ( #973 )
...
* fix local binding
* Update abaplint.jsonc
2024-02-29 09:05:35 +01:00
oblomov
5e19a51db4
model_fix ( #972 )
2024-02-28 21:09:58 +01:00
choper725
b8bf681142
update meta to template. ( #971 )
2024-02-28 20:51:24 +01:00
oblomov
78ddc9f10e
debugging_tool_replace_footer_for_low_releases ( #970 )
2024-02-28 19:01:10 +01:00
oblomov
9f4e862812
Low release fixes ( #969 )
...
* low-release-fixes
* update
2024-02-28 18:35:53 +01:00
axelmohnen
9b48c01acd
New link: Generic DDIC searchhelp ( #966 )
...
New link: Generic DDIC searchhelp
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-02-28 14:58:38 +01:00
oblomov
765f8f5296
low_ui5_version_fixes ( #967 )
...
* low_ui5_version_fixes
* lint fix
2024-02-28 14:53:33 +01:00
oblomov
fa2eba3351
add_multi_request_function ( #965 )
2024-02-28 10:10:51 +01:00
choper725
6850bba63f
update xml templating model binding & debugger feature for templating ( #964 )
2024-02-28 00:13:32 +01:00
oblomov
527158f728
update control structure in event ( #963 )
...
* update control structure in event
* update
2024-02-27 18:56:34 +01:00
oblomov
650b62a163
fix launchpad compatibility+busy handling ( #962 )
2024-02-27 14:00:05 +01:00
oblomov
190bb68dbc
fix-popup-preprocessor ( #961 )
2024-02-26 22:43:37 +01:00
choper725
3cf1f5dfa4
fix messaging ( #960 )
...
* fix message manager (old sdk)
* fix Messaging
---------
Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
2024-02-26 22:40:49 +01:00
choper725
53a31a0930
fix message manager (old sdk) ( #959 )
2024-02-26 22:25:37 +01:00
oblomov
8fc1e3cf9f
templating+launchpad_fix+startup_app_fix ( #958 )
...
* templating+launchpad_fix+startup_app_fix
* update
2024-02-26 16:42:07 +01:00
abapsheep
e0c595563b
Update z2ui5_cl_core_http_get.clas.abap ( #957 )
...
Added Templating for NestedViews
2024-02-26 14:23:51 +01:00
oblomov
f6acde1809
update ( #956 )
...
* update
* Update src/01/05/z2ui5_cl_cc_messaging.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-02-25 17:44:47 +01:00
oblomov
6658b1b387
Refactoring ( #955 )
...
* refactoring
* update
* Update changelog.txt
* lint fixes
* update
* update
2024-02-25 13:01:37 +01:00
choper725
e0a005cd6f
debugging tools ( #949 )
2024-02-25 03:15:49 +01:00
oblomov
a308f5903c
refactoring ( #943 )
...
* refactoring
* update
* refactoring
* refactoring
2024-02-23 18:00:59 +01:00