new version and fixes (#1005)

This commit is contained in:
oblomov 2024-03-11 11:14:04 -04:00 committed by GitHub
parent f0af59687c
commit 2014ea40ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 14 deletions

View File

@ -39,17 +39,17 @@ CLASS z2ui5_cl_core_event_srv IMPLEMENTATION.
result = |{ z2ui5_if_core_types=>cs_ui5-event_backend_function }(['{ val }'|.
IF s_cnt-model_name IS NOT INITIAL.
IF s_cnt-check_allow_multi_req = abap_true.
IF s_cnt-check_view_destroy = abap_true.
result = result && `,true,true, "` && s_cnt-model_name && `"`.
ELSE.
result = result && `,false,true, "` && s_cnt-model_name && `"`.
ENDIF.
ELSE.
result = result && `,false,false, "` && s_cnt-model_name && `"`.
ENDIF.
ELSEIF s_cnt-check_allow_multi_req = abap_true.
* IF s_cnt-model_name IS NOT INITIAL.
* IF s_cnt-check_allow_multi_req = abap_true.
* IF s_cnt-check_view_destroy = abap_true.
* result = result && `,true,true, "` && s_cnt-model_name && `"`.
* ELSE.
* result = result && `,false,true, "` && s_cnt-model_name && `"`.
* ENDIF.
* ELSE.
* result = result && `,false,false, "` && s_cnt-model_name && `"`.
* ENDIF.
IF s_cnt-check_allow_multi_req = abap_true.
IF s_cnt-check_view_destroy = abap_true.
result = result && `,true,true`.
ELSE.

View File

@ -222,7 +222,7 @@ CLASS z2ui5_cl_core_app_startup IMPLEMENTATION.
simple_form2->label( `Feedback` ).
simple_form2->link( text = `Contact`
target = `_blank`
href = `https://github.com/oblomov-dev` ).
href = `https://taplink.cc/oblomov` ).
client->view_display( page2->stringify( ) ).

View File

@ -1,7 +1,7 @@
INTERFACE z2ui5_if_app PUBLIC.
INTERFACES if_serializable_object.
CONSTANTS version TYPE string VALUE '1.122.0'.
CONSTANTS version TYPE string VALUE '1.123.0'.
CONSTANTS origin TYPE string VALUE 'https://github.com/abap2UI5/abap2UI5'.
CONSTANTS license TYPE string VALUE 'MIT'.

View File

@ -48,7 +48,7 @@ INTERFACE z2ui5_if_types
BEGIN OF ty_s_event_control,
check_view_destroy TYPE abap_bool,
check_allow_multi_req TYPE abap_bool,
model_name TYPE string,
* model_name TYPE string,
END OF ty_s_event_control.
ENDINTERFACE.