I have an interactive/classic report with a column that shows images. The row in the report can be edited as usual with a modal dialog.
But when I replace existing image it is not updated in the report even though all other fields do. I can also see that the numerical representation of the image is getting updated. Only the visualization of the image stays the same.
Also, when saving and refreshing the whole page, the correct image is showing up.
The query that creates the report:
select
ID,
APEX_ITEM.CHECKBOX2(15,p_value => ID) as "Select",
DESCRIPTION,
dbms_lob.getlength(BLOB_CONTENT) as "Image"
from UPLOADED_IMAGES
The image column Type is "Display image"
Why the images don't get updated on region refresh? Thanks for the help


So I changed the query that creates the Image column to:
As written in several guides
(Also need:
<img src="#Image#" height="75px">and now the refresh works. Still don't explain why the other way doesn't, but it's good enough.