Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more fixes #44

Merged
merged 3 commits into from
Feb 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/cl_gui_alv_grid.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.

METHODS get_selected_rows
EXPORTING
et_index_rows TYPE any
et_row_no TYPE any.
et_index_rows TYPE lvc_t_row
et_row_no TYPE lvc_t_roid.

METHODS refresh_table_display
IMPORTING
Expand All @@ -53,9 +53,9 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.

EVENTS double_click
EXPORTING
VALUE(e_row) TYPE any OPTIONAL
VALUE(e_column) TYPE any OPTIONAL
VALUE(es_row_no) TYPE any OPTIONAL.
VALUE(e_row) TYPE lvc_s_row OPTIONAL
VALUE(e_column) TYPE lvc_s_col OPTIONAL
VALUE(es_row_no) TYPE lvc_s_roid OPTIONAL.

EVENTS data_changed
EXPORTING
Expand Down