How to force desktop version of GRIDS in mobiles

Hello. I need my grids to be displayed in desktop mode on mobile devices
Does anybody know how to do that?
Thanks , very much
Sergio

Not tested, but try to use his code in the appinit o scirptinit

$_SESSION[‘scriptcase’][‘display_mobile’] = false;

I never tried it with a grid, but tested in control applications using event OnApplicationInit:

if($_SESSION['scriptcase']['device_mobile'] <> false || $_SESSION['scriptcase']['display_mobile'] <> false )
    { $ge_reload = 1; }
else
    { $ge_reload = 0; }
$_SESSION['scriptcase']['device_mobile'] = false;
$_SESSION['scriptcase']['display_mobile'] = false;

if ($ge_reload == 1)
    {
        sc_redir(YOUR_APPLICATION_NAME.php,email1=[email1]);
    }

Had to use the sc_redir cause the session variable have not been working ok an all devices otherwise…