Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multiple image at container

Former Member
0 Likes
706

hi ,
i need to display multiple image at container , for example employee pictures listing 15 pictures per a page.
i was display single image for employee number but when i try multiple, i cant refresh next image cause when i refresh all images refreshed and all images be same. i need tips or example codes.

thank you .

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
523

Hi Rajesh,

I would split dynamically custom container in so many rows that you need to show. In that case each image would be in different split container. Please check below how to create containers:

CREATE OBJECT SPLITTER

EXPORTING

   PARENT  = CUSTOM_CONTAINER

    ROWS    = 2

   COLUMNS = 1

   ALIGN   = 15.

CALL METHOD SPLITTER->GET_CONTAINER

  EXPORTING

    ROW       = 1

    COLUMN    = 1

  RECEIVING

    CONTAINER = GRAPHIC_PARENT1.

BR

Paul

1 REPLY 1
Read only

Former Member
0 Likes
524

Hi Rajesh,

I would split dynamically custom container in so many rows that you need to show. In that case each image would be in different split container. Please check below how to create containers:

CREATE OBJECT SPLITTER

EXPORTING

   PARENT  = CUSTOM_CONTAINER

    ROWS    = 2

   COLUMNS = 1

   ALIGN   = 15.

CALL METHOD SPLITTER->GET_CONTAINER

  EXPORTING

    ROW       = 1

    COLUMN    = 1

  RECEIVING

    CONTAINER = GRAPHIC_PARENT1.

BR

Paul