NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started 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!
-
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
-
Thanks Bruce! That did it.