NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: debraballenger on March 12, 2013, 09:09:55 AM

Title: How to turn off Tooltips on mobile
Post by: debraballenger 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!
Title: Re: How to turn off Tooltips on mobile
Post by: Bruce 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
Title: Re: How to turn off Tooltips on mobile
Post by: debraballenger on March 13, 2013, 06:55:49 AM
Thanks Bruce!  That did it.