Hello,
After installing the last 1314 version, I noticed some broken features:
- some tooltip now have vertical lines left and right, this also appear in your demo : adcontrols_aspnetajax/ToolTip/Examples/BindToTarget/DefaultCS.aspx
- area for tooltips no more adapt to its content as previously, following code no more works, tolltip is displyaed but to small for content:
if (!Object.Equals(Ctl, null) && (ImgItem.imageShortDescription != string.Empty) )
{
RadToolTip tt = new RadToolTip();
tt.ID = string.Format("tt_{0}",Ctl.ID);
tt.TargetControlID = Ctl.ClientID;
tt.IsClientID = true;
tt.Position = ToolTipPosition.Center;
tt.RelativeTo = ToolTipRelativeDisplay.Element;
tt.ContentScrolling = ToolTipScrolling.Auto;
Ctl.Parent.Controls.AddAt(Ctl.Parent.Controls.IndexOf(Ctl),tt);
tt.Text = ImgItem.imageShortDescription;
}
Thanks for suggestion.
CS
After installing the last 1314 version, I noticed some broken features:
- some tooltip now have vertical lines left and right, this also appear in your demo : adcontrols_aspnetajax/ToolTip/Examples/BindToTarget/DefaultCS.aspx
- area for tooltips no more adapt to its content as previously, following code no more works, tolltip is displyaed but to small for content:
if (!Object.Equals(Ctl, null) && (ImgItem.imageShortDescription != string.Empty) )
{
RadToolTip tt = new RadToolTip();
tt.ID = string.Format("tt_{0}",Ctl.ID);
tt.TargetControlID = Ctl.ClientID;
tt.IsClientID = true;
tt.Position = ToolTipPosition.Center;
tt.RelativeTo = ToolTipRelativeDisplay.Element;
tt.ContentScrolling = ToolTipScrolling.Auto;
Ctl.Parent.Controls.AddAt(Ctl.Parent.Controls.IndexOf(Ctl),tt);
tt.Text = ImgItem.imageShortDescription;
}
Thanks for suggestion.
CS