Skip to content

Commit

Permalink
RangeSlider Parameters (abap2UI5#1107)
Browse files Browse the repository at this point in the history
  • Loading branch information
abapsheep authored Apr 25, 2024
1 parent 7d5c4a1 commit 738c959
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/02/01/01/z2ui5_cl_xml_view.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -1342,6 +1342,9 @@ CLASS z2ui5_cl_xml_view DEFINITION
!width TYPE clike OPTIONAL
!class TYPE clike OPTIONAL
!id TYPE clike OPTIONAL
!value TYPE clike OPTIONAL
!value2 TYPE clike OPTIONAL
!change TYPE clike OPTIONAL
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.

METHODS generic_tag
Expand Down Expand Up @@ -6940,7 +6943,10 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
( n = `showTickmarks` v = z2ui5_cl_util=>boolean_abap_2_json( showtickmarks ) )
( n = `startValue` v = startvalue )
( n = `step` v = step )
( n = `width` v = width ) ) ).
( n = `width` v = width )
( n = `value` v = value )
( n = `value2` v = value2 )
( n = `change` v = change ) ) ).
ENDMETHOD.

METHOD rating_indicator.
Expand Down

0 comments on commit 738c959

Please sign in to comment.