mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 20:46:17 +08:00
parent
a11e2ef070
commit
e1b7b93f9a
14
changelog.txt
Normal file
14
changelog.txt
Normal file
|
@ -0,0 +1,14 @@
|
|||
abap2UI5 changelog
|
||||
=================
|
||||
|
||||
Legend
|
||||
------
|
||||
* : fixed
|
||||
! : changed
|
||||
+ : added
|
||||
- : removed
|
||||
|
||||
2023-12-15 v1.110.0
|
||||
-------------------
|
||||
|
||||
+ test
|
|
@ -141,9 +141,6 @@ CLASS z2ui5_cl_fw_binding IMPLEMENTATION.
|
|||
ASSIGN (lv_name) TO <attri>.
|
||||
IF sy-subrc <> 0.
|
||||
RETURN.
|
||||
* RAISE EXCEPTION TYPE z2ui5_cx_fw_error
|
||||
* EXPORTING
|
||||
* val = `BINDING_ERROR_ATTRIBUTE_NOT_FOUND_WITH_NAME__` && bind->name.
|
||||
ENDIF.
|
||||
|
||||
DATA lr_ref TYPE REF TO data.
|
||||
|
|
|
@ -184,9 +184,7 @@ CLASS Z2UI5_CL_FW_DB IMPLEMENTATION.
|
|||
IF sy-subrc <> 0.
|
||||
CONTINUE.
|
||||
ENDIF.
|
||||
* IF <deref_attri> IS NOT INITIAL.
|
||||
lr_attri->data_rtti = z2ui5_cl_util_func=>rtti_xml_get_by_data( <deref_attri> ).
|
||||
* ENDIF.
|
||||
CLEAR <deref_attri>.
|
||||
CLEAR <attri>.
|
||||
ENDLOOP.
|
||||
|
|
|
@ -71,7 +71,7 @@ CLASS z2ui5_cl_fw_model IMPLEMENTATION.
|
|||
|
||||
CASE lr_attri->type_kind.
|
||||
|
||||
WHEN `h`.
|
||||
WHEN cl_abap_typedescr=>typekind_table.
|
||||
z2ui5_cl_util_func=>trans_ref_tab_2_tab(
|
||||
EXPORTING
|
||||
ir_tab_from = <frontend>
|
||||
|
@ -82,7 +82,7 @@ CLASS z2ui5_cl_fw_model IMPLEMENTATION.
|
|||
|
||||
ASSIGN <frontend>->* TO <frontend>.
|
||||
CASE lr_attri->type_kind.
|
||||
WHEN 'D' OR 'T'.
|
||||
WHEN cl_abap_typedescr=>typekind_date OR cl_abap_typedescr=>typekind_time.
|
||||
z2ui5_cl_util_func=>trans_json_2_any(
|
||||
EXPORTING
|
||||
val = `"` && <frontend> && `"`
|
||||
|
@ -153,15 +153,8 @@ CLASS z2ui5_cl_fw_model IMPLEMENTATION.
|
|||
ENDCASE.
|
||||
ENDCASE.
|
||||
|
||||
* IF lr_attri->bind_type = z2ui5_cl_fw_binding=>cs_bind_type-two_way.
|
||||
* INSERT VALUE #( n = lr_attri->name_front v = lr_attri->name ) INTO TABLE lt_binds.
|
||||
* ENDIF.
|
||||
ENDLOOP.
|
||||
|
||||
* lo_update->add_attribute( n = `OBINDS`
|
||||
* v = z2ui5_cl_fw_utility=>trans_json_any_2( lt_binds )
|
||||
* apos_active = abap_false ).
|
||||
|
||||
result = lr_view_model->stringify( ).
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
|
@ -2597,7 +2597,7 @@ result = result &&
|
|||
` + (this._attributes.title ? ' title="' + this._attributes.title + '"' : '')` && |\n| &&
|
||||
` + ' />';` && |\n| &&
|
||||
` };` && |\n|.
|
||||
result = `` && |\n| &&
|
||||
result = result && |\n| &&
|
||||
` Polygon.prototype.getCoordsForDisplayingInfo = function() {` && |\n| &&
|
||||
` return {` && |\n| &&
|
||||
` x : this._coords.points[0].x,` && |\n| &&
|
||||
|
|
|
@ -105,7 +105,6 @@ CLASS Z2UI5_CL_CC_MESSAGING IMPLEMENTATION.
|
|||
` Messaging.registerObject(sap.z2ui5.oView, true);` && |\n| &&
|
||||
` oControl.isInitialized = true;` && |\n| &&
|
||||
` setTimeout( (oControl) => { ` && |\n| &&
|
||||
* ` Messaging.registerObject(sap.z2ui5.oView, true);` && |\n| &&
|
||||
` ` && |\n| &&
|
||||
` ` && |\n| &&
|
||||
` }, 50 , oControl );` && |\n| &&
|
||||
|
|
Loading…
Reference in New Issue
Block a user