Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions SAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ ready-to-run apps** the README leads with.
| Sample | Class |
|---|---|
| Events on Cell Level<br>Events on cell level in a grid table: which row and which column the user was in, and what arrives in the backend.<br><sub>cell enter row index event grid alv</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_160`](src/01/z2ui5_cl_smp_app_160.clas.abap) |
| Full Example with sap.ui.table<br>The full sap.ui.table example: a DynamicPage with search, sort, filter, currency columns and row actions - the closest thing here to a finished ALV.<br><sub>grid alv dynamicpage column row action currency search sort filter</sub><br><sub>docs: [get_started/full_example](https://abap2ui5.github.io/docs/get_started/full_example), [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables), [tutorials/walkthrough/step-8](https://abap2ui5.github.io/docs/tutorials/walkthrough/step-8)</sub> | [`Z2UI5_CL_SMP_APP_070`](src/01/z2ui5_cl_smp_app_070.clas.abap) |
| Full Example with sap.ui.table<br>The full sap.ui.table example: a DynamicPage with search, sort, filter, currency columns and row actions - the closest thing here to a finished ALV.<br><sub>grid alv dynamicpage column row action currency search sort filter</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables), [tutorials/walkthrough/step-9](https://abap2ui5.github.io/docs/tutorials/walkthrough/step-9), [tutorials/walkthrough/step-10](https://abap2ui5.github.io/docs/tutorials/walkthrough/step-10)</sub> | [`Z2UI5_CL_SMP_APP_070`](src/01/z2ui5_cl_smp_app_070.clas.abap) |
| Keep Column Filters on Refresh (C)<br>Keeps the active sap.ui.table column filters across a view model update, through the abap2UI5 uitableext custom control - without it they are reset.<br><sub>column filter reset refresh uitableext grid alv</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_143`](src/01/z2ui5_cl_smp_app_143.clas.abap) |

### List
Expand Down Expand Up @@ -218,7 +218,7 @@ ready-to-run apps** the README leads with.
| Sample | Class |
|---|---|
| Drag and Drop Rows (A)<br>Drag and drop of table rows (DragDropInfo), and how the new order reaches the internal table.<br><sub>dnd dragdropinfo reorder rows move</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_459`](src/01/z2ui5_cl_smp_app_459.clas.abap) |
| Editable Cells, Add and Delete Rows<br>An editable table: input cells, adding and deleting rows, multi-select and a toolbar over them.<br><sub>edit input add row delete multiselect toolbar</sub><br><sub>docs: [get_started/full_example](https://abap2ui5.github.io/docs/get_started/full_example), [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_011`](src/01/z2ui5_cl_smp_app_011.clas.abap) |
| Editable Cells, Add and Delete Rows<br>An editable table: input cells, adding and deleting rows, multi-select and a toolbar over them.<br><sub>edit input add row delete multiselect toolbar</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables), [tutorials/walkthrough/step-8](https://abap2ui5.github.io/docs/tutorials/walkthrough/step-8), [tutorials/walkthrough/step-10](https://abap2ui5.github.io/docs/tutorials/walkthrough/step-10)</sub> | [`Z2UI5_CL_SMP_APP_011`](src/01/z2ui5_cl_smp_app_011.clas.abap) |
| Filter Rows in the Backend<br>Filters table rows in the BACKEND from a form above it, so the WHERE runs where the data is.<br><sub>filter server side form growing where</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_045`](src/01/z2ui5_cl_smp_app_045.clas.abap) |
| Large Table with Growing and ScrollContainer<br>10.000 rows in one table: growing, a sticky toolbar and sorting - and what that costs on the way to the browser.<br><sub>growing 10000 rows sticky toolbar sort performance</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_006`](src/01/z2ui5_cl_smp_app_006.clas.abap) |
| Live Search with Parallel Requests<br>Two SearchFields that round-trip on every keystroke on purpose - to show what that does: requests overtaking each other, the busy queue, the value lagging behind fast typing.<br><sub>live search parallel requests busy queue typing</sub><br><sub>docs: [cookbook/model/tables](https://abap2ui5.github.io/docs/cookbook/model/tables)</sub> | [`Z2UI5_CL_SMP_APP_059`](src/01/z2ui5_cl_smp_app_059.clas.abap) |
Expand Down
2 changes: 1 addition & 1 deletion src/01/z2ui5_cl_smp_app_011.clas.abap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" @keywords edit input add row delete multiselect toolbar
" @summary An editable table: input cells, adding and deleting rows, multi-select and a toolbar over them.
" @docs https://abap2ui5.github.io/docs/get_started/full_example https://abap2ui5.github.io/docs/cookbook/model/tables
" @docs https://abap2ui5.github.io/docs/cookbook/model/tables https://abap2ui5.github.io/docs/tutorials/walkthrough/step-8 https://abap2ui5.github.io/docs/tutorials/walkthrough/step-10
CLASS z2ui5_cl_smp_app_011 DEFINITION PUBLIC.

PUBLIC SECTION.
Expand Down
2 changes: 1 addition & 1 deletion src/01/z2ui5_cl_smp_app_070.clas.abap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" @keywords grid alv dynamicpage column row action currency search sort filter
" @summary The full sap.ui.table example: a DynamicPage with search, sort, filter, currency columns and row actions - the closest thing here to a finished ALV.
" @docs https://abap2ui5.github.io/docs/get_started/full_example https://abap2ui5.github.io/docs/cookbook/model/tables https://abap2ui5.github.io/docs/tutorials/walkthrough/step-8
" @docs https://abap2ui5.github.io/docs/cookbook/model/tables https://abap2ui5.github.io/docs/tutorials/walkthrough/step-9 https://abap2ui5.github.io/docs/tutorials/walkthrough/step-10
CLASS z2ui5_cl_smp_app_070 DEFINITION PUBLIC.

PUBLIC SECTION.
Expand Down
Loading