abap2UI5

Control Behaviour

Opens the PDF viewer by calling it by ID, so a document can be shown from an event without rebuilding the view.

Z2UI5_CL_SMP_APP_449

Learn Control Behaviour UI5 1.71

The facts

Repository
abap2UI5/samples
Class
Z2UI5_CL_SMP_APP_449
Source file
z2ui5_cl_smp_app_449.clas.abap
Category
Control Behaviour
Learning path
Reach outside the view
Minimum UI5
1.71 — the floor abap2UI5 holds its samples to
In the playground
runs in the browser, with no system and nothing installed
Documentation
abap2ui5.github.io/docs/cookbook/device_capabilities/pdf ↗

Keywords: pdfviewer, pdf, document, viewer, popup, control_by_id, whitelisted

Controls it builds

Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.

Libraries

Run it here

The sample running, in this page — the app on its own, with no editor over it. Switch to Playground with this code

Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.

The ABAP

z2ui5_cl_smp_app_449.clas.abap — 91 lines Read it on GitHub ↗
" @keywords pdfviewer pdf document viewer popup control_by_id whitelisted
" @summary Opens the PDF viewer by calling it by ID, so a document can be shown from an event without rebuilding the view.
" @docs https://abap2ui5.github.io/docs/cookbook/device_capabilities/pdf https://abap2ui5.github.io/docs/cookbook/event_navigation/frontend
CLASS z2ui5_cl_smp_app_449 DEFINITION PUBLIC.

  PUBLIC SECTION.
    INTERFACES z2ui5_if_app.

  PROTECTED SECTION.
    DATA client TYPE REF TO z2ui5_if_client.

    METHODS view_display.
    METHODS on_event.

  PRIVATE SECTION.
ENDCLASS.


CLASS z2ui5_cl_smp_app_449 IMPLEMENTATION.

  METHOD z2ui5_if_app~main.

    me->client = client.
    IF client->check_on_navigated( ).
      view_display( ).
    ELSE.
      on_event( ).
    ENDIF.

  ENDMETHOD.


  METHOD on_event.

    IF client->get_event( ) = `OPEN`.
      " open the popup-mode PDFViewer via the whitelisted open method -
      " the viewer brings its own dialog and close button.
      " t_arg is positional: id, method (the view defaults to cs_view-main
      " and can be omitted for a main-view control)
      client->follow_up_action( val   = z2ui5_if_client=>cs_event-control_by_id
                                t_arg = VALUE #( ( `demoPdf` )
                                                 ( `open` ) ) ).
    ENDIF.

  ENDMETHOD.


  METHOD view_display.

    DATA(view) = z2ui5_cl_ui5_view_builder=>factory(
        )->ele( n = `View` ns = `mvc`
            )->a( n = `displayBlock` v = `true`
            )->a( n = `height`       v = `100%`
            )->a( n = `xmlns`        v = `sap.m`
            )->a( n = `xmlns:mvc`    v = `sap.ui.core.mvc`
            )->a( n = `xmlns:core`   v = `sap.ui.core` ).

    DATA(page) = view->ele( `Shell`
        )->ele( `Page`
            )->a( n = `title`          v = `abap2UI5 - Control Behaviour - Open the PDF Viewer by ID`
            )->a( n = `showNavButton`  b = client->check_app_prev_stack( )
            )->a( n = `navButtonPress` v = client->_event_nav_app_leave( ) ).

    " a popup-mode PDFViewer kept as a dependent of the page; opened
    " imperatively from the backend, like a controller calling oViewer.open()
    page->ele( `dependents`
        )->ele( `PDFViewer`
            )->a( n = `id`     v = `demoPdf`
            )->a( n = `title`  v = `Sample PDF`
            )->a( n = `source` v = `https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/sample/PDFViewerPopup/sample1.pdf`
            )->a( n = `height` v = `100%` ).

    page->tag( `MessageStrip`
        )->a( n = `text`     v = `The button opens the popup-mode PDFViewer via the whitelisted open method ` &&
                   `(follow_up_action with cs_event-control_by_id), client-side after render.`
        )->a( n = `type`     v = `Information`
        )->a( n = `showIcon` b = abap_true
        )->a( n = `class`    v = `sapUiSmallMargin` ).

    page->ele( `VBox`
        )->a( n = `class` v = `sapUiSmallMargin`
        )->tag( `Button`
            )->a( n = `press` v = client->_event( `OPEN` )
            )->a( n = `text`  v = `Open PDF`
            )->a( n = `icon`  v = `sap-icon://pdf-attachment` ).

    client->view_display( view->stringify( ) ).

  ENDMETHOD.

ENDCLASS.

More in Control Behaviour

Search every abap2UI5 sample · the full list on one page

On this page