NetTalk Central

Author Topic: How to turn off Tooltips on mobile  (Read 2656 times)

debraballenger

  • Newbie
  • *
  • Posts: 49
    • View Profile
    • Email
How to turn off Tooltips on mobile
« on: March 12, 2013, 09:09:55 AM »
Hi All,

Does anyone know how to turn off the tool tips, either in general or only for mobile? 

When the tool tips are on mobile devices it is requiring that I click a button or check box 2 times, the first time gives me the tooltip, the second performs the action that the button or entry is supposed to do.

Thanks for any advice!

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: How to turn off Tooltips on mobile
« Reply #1 on: March 12, 2013, 09:48:07 PM »
The property you are looking for is p_web.site.noTips

so I recommend adding the following link to the
WebHandler proceudre
ProcessLink method
before the parent call

if self.mobile
  self.site.noTips = true
end


Cheers
Bruce

debraballenger

  • Newbie
  • *
  • Posts: 49
    • View Profile
    • Email
Re: How to turn off Tooltips on mobile
« Reply #2 on: March 13, 2013, 06:55:49 AM »
Thanks Bruce!  That did it.