
Hi,
I have seen various extensions which utilize image icons on the list view to show status - so for example a purchase order list would contain a yellow cirlce for open an greencircle for releases etc..
in al code what is the approach to display an image/icon in the repeater section of a list?
thanks
Hello,
To use a image for status, you have to store your Image in a table, for example see the table Structure
| Color Name | Color Code | Color Image |
| Red | #ff0000 | Upload Image |
| Green | #008000 | Upload Image |
| Blue | #0000ff | Upload Image |
| Purple | #800080 | Upload Image |
Now Add a field in your table and Map the color table and Instead of Status show the Color Image field in the list page.
Note: I recommend you do not use this as it degrade the performance.
Instead of use Style property of the field which would looks more productive as shown below.
AL Code