Won't Fix
Last Updated: 22 Apr 2015 15:02 by ADMIN
ADMIN
Dimitar
Created on: 29 May 2014 08:56
Category: Menu
Type: Feature Request
0
FIX: RadMenu sub-menu items expanded through toggle handle immediately collapse when ShowToggleHandle="True" and browsed with IE 10 on Windows RT tablets
Workaround:
Set ClickToOpen = true in the control markup or if you want to set it only for the problematic browsers, use the following server-side code:

    protected void Page_Load(object sender, EventArgs e)
    {
        string userAgent = Request.UserAgent;
        string searchPattern = "ARM(?i)|Touch(?i)";

        if (System.Text.RegularExpressions.Regex.IsMatch(userAgent, searchPattern))
        {
           RadContextMenu1.ClickToOpen = true;
        }
    }
0 comments