0

我在网格中使用jquery 工具提示作为标签,为工具提示设置颜色使用这种样式

<style type="text/css">
            .ui-tooltip
            {
                background: lightblue;
            }
 </style>

我为我的表单主题使用了两种颜色,浅红色和浅蓝色,因为我的工具提示样式是静态的,当用户选择红色主题红色时,我无法将工具提示颜色更改为红色

更改表单主题的代码

 protected void Page_PreInit(object sender, EventArgs e)
    {
        string strMsg = string.Empty;

        try
        {
            if (Session["AppTheme"] != null)
            {
                string _theme = Session["AppTheme"].ToString();
                if (_theme != null)
                {
                    Page.Theme = _theme;
                }
            }
            else
            {
                Session["AppTheme"] = "DarkBlue";
                Page.Theme = Session["AppTheme"].ToString();
            }
        }
        catch (Exception ex)
        {
           strMsg = "Error Details : " + ex.Message;

        }
    }

在哪里管理用于更改工具提示颜色的代码,任何帮助都将不胜感激。

4

0 回答 0