Hello,
The cell mode does show it just depends on how you use your tablet. Assuming you are talking about an iPad you need to click and hold to view the box. It's the way Apple handles 'tooltips'.
We use the Joomla! isMobile method to determine if on a smart device.
You can hack the core.. in:
/components/com_jevents/jevents.php
See:
$isMobile = $browser->isMobile();
// Joomla isMobile method doesn't identify all android phones
if (!$isMobile && isset($_SERVER['HTTP_USER_AGENT']))
{
if (stripos($_SERVER['HTTP_USER_AGENT'], 'android') > 0 || stripos($_SERVER['HTTP_USER_AGENT'], 'blackberry') > 0)
{
$isMobile = true;
}
else if (stripos($_SERVER['HTTP_USER_AGENT'], 'iphone') > 0 || stripos($_SERVER['HTTP_USER_AGENT'], 'ipod') > 0)
{
$isMobile = true;
}
}
You can then use a force to isMobile = false on detection of an iPad for instance.
Many thanks
Tony