add bind clear functionality (#593)

This commit is contained in:
oblomov 2023-10-23 10:29:08 +02:00 committed by GitHub
parent 66cc249f14
commit 56357f10fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -267,6 +267,13 @@ CLASS z2ui5_cl_fw_client IMPLEMENTATION.
ENDMETHOD.
METHOD z2ui5_if_client~_bind_clear.
CLEAR mo_handler->ms_db-t_attri.
ENDMETHOD.
METHOD z2ui5_if_client~_bind_edit.
DATA(lo_binder) = z2ui5_cl_fw_binding=>factory(
@ -332,7 +339,7 @@ CLASS z2ui5_cl_fw_client IMPLEMENTATION.
ENDMETHOD.
METHOD z2ui5_if_client~message_manager_clear.
METHOD z2ui5_if_client~message_manager_clear.
mo_handler->ms_next-s_set-s_message_manager-check_clear = abap_true.

View File

@ -223,4 +223,6 @@ INTERFACE z2ui5_if_client
RETURNING
VALUE(result) TYPE string.
methods _bind_clear.
ENDINTERFACE.