我在网格中使用 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;
}
}
在哪里管理更改工具提示颜色的代码, 任何帮助都会受到欢迎。