Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Qlikperts ,
I need a small help to know that how to pop-up an image in a qvw with some button action / triggers ...
may be with macro also it helps for me
thanks a lot in advance
Meher
A macro can invoke a pop-up but I don't think it is possible to put an image there.
You can use a couple of buttons and a couple of text objects:
button1: to set a variable (eg. vShowPopUp) to 1 - this will show the pop-up
button2: to set a variable back to 0 - this will hide the pop-up
textbox1: this will be your object with an image
textbox2 will be an transparent or almost transparent big textbox to go behind textbox1.
When vShowPopUp is one, the other objects will become visible (set it in layout tab on object properties)
Hope this helps,
Erich
Thanks Eric
I'll try that & is there anyway that i can hide a specified sheet and by using a button can i make it appear if so can you tell me how to do it ...
thanks a lot
Meher
Sure,
You can use buttons to set a variable (as I mentioned for the 'pop-up') and use this variable as a condition for the sheet. At the sheets properties, general tab-> set the show sheet condition.
You can also use triggers in the button to go to the sheet.
Regards,
Erich
Meher, you can use a variable to have a sheet appear or not and the use a button with an action to set that variable.
Thanks Eric & Thanks Daniel for the idea ...