Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
brijesh1991
Partner - Specialist
Partner - Specialist

ListBox Text PopUp

Hi All,

My immediate application for this is that I have a List Box that lists country-name abbreviations.  But some end-users are not familiar with all the abbreviations, so it would be helpful for them to be able to hover the mouse over the abbreviation and have the full country name pop-up.

Help me with this any API, Extentions, or any crazy IDEA!

Brijesh

6 Replies
Sokkorn
Master
Master

Hi Brijesh,

For me  I think we should spend time to create new extension or other object. Why don't you use a field with Country-name.

Or we can use ListBox expression = [Abbreviations] &'-'&[Country Name] so that user can see both Abbrev and full name

Regards,

Sokkorn

brijesh1991
Partner - Specialist
Partner - Specialist
Author

yaa.. you are right sir.. but there is not much horizontal space and it doesn't seen that much dynamic and cool!

Let me know if you find something interesting. .. .

Thanks. .. .

Brijesh

hugmarcel
Specialist
Specialist

A good solution is just to use as listbox formula:

=KPI & CHR(10) & [Business Description]

Only the KPI will be visible at first, when mouse-overing the business description will become visible.

Marcel

Not applicable

Nice, Marcel!!  Thanks!

aveeeeeee7en
Specialist III
Specialist III

Hi

You can achieve this using Bar Chart. It's just a workaround.

See this:

List Box Hover.jpg

You can also use concatenated Field.

eg. CountryCodeField&' - '&chr(32)&chr(32)&CountryNameField AS Newfield

Also, see the Attachment.

Regards

Aviral Nag

brijesh1991
Partner - Specialist
Partner - Specialist
Author

Thanks Marcel... It's working...thank you buddy