Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rohitians
Creator III
Creator III

Tool Tip Change on List Box

Dear Firends,

I have a list Box where entries are 1, 2, 3  and 4  I dont want to show the tool tip or may be can we change the tool tip.

Please help.

Thanks,

Rohit Yadav

1 Solution

Accepted Solutions
rohitians
Creator III
Creator III
Author

Hi Friends,

I used Expression instead of directly using List Box .

=   if(%ComparisonPeriodType=1,

  if(vYearSelect=0,'YTD ' & Right($(vFY),2) & ' vs YTD ' & Right($(vPFY),2),

    'YTD ' & Right($(vCalYr),2) & ' vs YTD ' & Right($(vPrCalYr),2)

  ),

  if(%ComparisonPeriodType=2,

  if(vYearSelect=0, 'Ann ' & Right($(vFY),2) & ' vs Full Year ' & Right($(vPFY),2),

    'Ann ' & Right($(vCalYr),2) & ' vs Full Year ' & Right($(vPrCalYr),2)

  ),

  if(%ComparisonPeriodType=3,'Custom'

  ,

  if(%ComparisonPeriodType=4,'3 Month vs 3 Month'

  ))))

Based on the changes even the tool tip discription have changed.

Thanks for helping.

Thanks,

Rohit Yadav

View solution in original post

8 Replies
micheledenardi
Specialist II
Specialist II

Hi,

Go to Properties, Caption. Uncheck all the options under "Special Icons".

Hope this helps!

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
rohitians
Creator III
Creator III
Author

Hi,

I am not using Caption at all..

Thanks,

Rohit Yadav

micheledenardi
Specialist II
Specialist II

Please post an example image of your problem

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable

You can edit the tooltip by entering your required text in the helptext under caption section.

Additionally a listbox values doesn't display a tooltip . 

qlikview979
Specialist
Specialist

Not understand,

can you share with example.

praveen_prithiviraj
Contributor III
Contributor III

Hi,

I think you meaned about the below popup in list box.

b.JPG.

If that is the case, then you need change the Display Options as "Text" in the expressions as given in the below.

a.jpg

Hope this helps!

If this is not the case.. Kindly share any examples image of your problem...

Kind Regards,
Praveen Kumar. P
rohitians
Creator III
Creator III
Author

Dear Pravinn,

The Tool Tip is only visible on the front end where as technically there are no tool tip  present for List box,

as in case of charts.

So as there is no setting available to disable tool tip or change it so  is there any work around?.

Thanks,

Rohit Yadav

rohitians
Creator III
Creator III
Author

Hi Friends,

I used Expression instead of directly using List Box .

=   if(%ComparisonPeriodType=1,

  if(vYearSelect=0,'YTD ' & Right($(vFY),2) & ' vs YTD ' & Right($(vPFY),2),

    'YTD ' & Right($(vCalYr),2) & ' vs YTD ' & Right($(vPrCalYr),2)

  ),

  if(%ComparisonPeriodType=2,

  if(vYearSelect=0, 'Ann ' & Right($(vFY),2) & ' vs Full Year ' & Right($(vPFY),2),

    'Ann ' & Right($(vCalYr),2) & ' vs Full Year ' & Right($(vPrCalYr),2)

  ),

  if(%ComparisonPeriodType=3,'Custom'

  ,

  if(%ComparisonPeriodType=4,'3 Month vs 3 Month'

  ))))

Based on the changes even the tool tip discription have changed.

Thanks for helping.

Thanks,

Rohit Yadav