Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How Display Images when i am clicking the data in listbox?

Hi Every one,

I have 1 to 9 numbers and each number has a Image.

Then i am displying the All number in one Listbox.

now My requirment is how can i disply the related Images when i am clicking the number form listbox.

it is possible in Qlikview.

if it is possible kindly please help me on this.

Many Thanks

vas.

13 Replies
SunilChauhan
Champion
Champion

use

Bundle info Load * from flagoecd.csv;

or

Bundle Select * from infotable;

or

Bundle info

load * inline

[

1,image1 path

2,image2 path

.

.

.]

;

Sunil Chauhan
Not applicable
Author

Hi i writting code like this

xxx:

Bundle info

load * inline

[

1,C:\Users\Administrator\Desktop\KPRHost\KPRHost\images\Agni1.jpg

2,C:\Users\Administrator\Desktop\KPRHost\KPRHost\images\Agni2.jpg

];

but where can i found the Image in my sheet.

can u explain more

Thanks

vas

Not applicable
Author

Hi.

You must add name to field, like this. And use name 'number' in you sheet.

xxx:

Bundle info

load * inline

[

number,pic

1,C:\Users\Administrator\Desktop\KPRHost\KPRHost\images\Agni1.jpg

2,C:\Users\Administrator\Desktop\KPRHost\KPRHost\images\Agni2.jpg

];

Not applicable
Author

Hello i tried the above code but it is not working

it's load only number only but not loaded pic.

why............?

plz help me..

Thanks

vas

Not applicable
Author

You must wright in "Text Object Properties"

    =info(number)  and choise under "Representation" - 'Image'.

This work if you choise only one number

its_anandrjs

Hi,

Check out this code, See the sample file for answers

Objects:

LOAD * INLINE [

    PicName,         Name

    Bluehills.jpg,   Bluehills

    Sunset.jpg,      Sunset

    Winter.jpg,      Winter

];

ObjectPic:

bundle  LOAD * INLINE [

    PicName,        Path

    Bluehills.jpg,   D:\Image\Bluehills.jpg

    Sunset.jpg,     D:\Image\Sunset.jpg

    Winter.jpg,      D:\Image\Winter.jpg

];

HTH

Rgds

Anand

its_anandrjs

Hi,

See the attached updated file

HTH

Rgds

Anand

Not applicable
Author

Thanks KostinSergey

with Regards

vas

its_anandrjs

Hi,

If you use windows system so change location of the images from my location to

C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\

or just give your image folder location some thing like

C:\Image\Waterlilies.jpg

and check the result.

Rgds

Anand