‎2014 Jan 30 8:48 AM
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 .
‎2014 Jan 30 9:20 AM
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
‎2014 Jan 30 9:20 AM
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