Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

Need Help?

Hi All,

How to display images in Listbox.?

Suppose if i am take field in list box i want to show images.

1 Solution

Accepted Solutions
francoiscave
Partner - Creator III
Partner - Creator III

Hi Paul,

Have you try with the option below:

Before, in the script, do a bundle load like:

Table_Image:

Bundle Load * inline [

Country,path

IndiaF:\J L T\JLT APP's\14th Jan\Images\India.jpg
UKF:\J L T\JLT APP's\14th Jan\Images\UK.jpg

];

PS. Country is a linked field in your DataModel.

and edit an expression in your listBox like

=Info(Country)

Have fun with QV,

François

View solution in original post

2 Replies
francoiscave
Partner - Creator III
Partner - Creator III

Hi Paul,

Have you try with the option below:

Before, in the script, do a bundle load like:

Table_Image:

Bundle Load * inline [

Country,path

IndiaF:\J L T\JLT APP's\14th Jan\Images\India.jpg
UKF:\J L T\JLT APP's\14th Jan\Images\UK.jpg

];

PS. Country is a linked field in your DataModel.

and edit an expression in your listBox like

=Info(Country)

Have fun with QV,

François

paulwalker
Creator III
Creator III
Author

Thank you Francois....