Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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....