Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Reload on field selection

Dear all,

I was wondering if it's possible to reload data after a selection on a list box. I've a list box with some Type Code. Choosing a value, I would activate the reload function. How can I do it ?

Help please

Thanks in advance for your help

1 Solution

Accepted Solutions
Gysbert_Wassenaar

See here for a solution


talk is cheap, supply exceeds demand

View solution in original post

7 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Use field event trigger on the field selection.

Which you can found in the Triggers tab of document properties.

Anonymous
Not applicable
Author

Hi,

I did it but nothing happens. I have choosen the field and selected reload data, saved and close the document.

Then I open again the document , but when I make a selection on my field the reload is missing..

CELAMBARASAN
Partner - Champion
Partner - Champion

Use macro to do it.

Sub Reload

ActiveDocument.Reload

End Sub

I checked Reload didn't worked. I dono whether it is a restriction or bug.

Hope the macro helps

Gysbert_Wassenaar

See here for a solution


talk is cheap, supply exceeds demand
Anonymous
Not applicable
Author

HI, Gysbert thanks very much.

Just another pleasure: I don't understand how does it work.

Let me understand when the full loading is active and when the partial reload.

(I understood that the last one is activated when you choose an item)

Could you spend please, some minutes to give me any further ?

Thanks in advance

Gysbert_Wassenaar

The two buttons each have a different action assigned to them. One does a normal reload, the other does a partial reload. The customer table is always reloaded the Customerdetails is only reloaded with a partial reload because of the ONLY keyword. Otherwise it would reload on a normal reload too. The where clause for Customerdetails uses a variable to only load the records of the customers selected in the listbox.


talk is cheap, supply exceeds demand
Anonymous
Not applicable
Author

Thanks !!