Hello,
We are facing an issue in Telerik RadToolTipManager . We have a Radgrid with hyperlinks on each cell. Hover on hyperlink shows a tooltip which is a placeholder that contains few links and a radcombobox. RadGrid Columns are build with ItemTemplate
When we hover over the link on the first row , the tool tip appears with correct data. When we go the second row or to another cell, the tool tip still holds the old values. The occurrence of this issue is not consistent and is random. Some times the tooltip data is shown correct for first few mouse hovers across rows or across cells on the same row. Some times , it breaks in the second tooltip. There is no pattern in which this issue occurs.
We did a lot of ressearch on Telerik forums and tried the following
1. Clearing TargetControls. We also validated that each target control in Radtooltipmanager has a unique ID.
2. Adding the tooltip controls to args.UpdatePanel in PreRender Event
3. Making the surrounding div of the tooltip placeholder runat="server" and then assign an ID
We are adding the target controls in the following way:
ToolTipTargetControl control = new ToolTipTargetControl();
control.IsClientID = true;
control.TargetControlID = visitLink1.ClientID;
control.Value = Convert.ToString(visit.ID);
if (this.RadToolTipManager1 != null)
{
RadToolTipManager1.TargetControls.Add(control);
}
We are adding the controls to tooltip as follows:
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
if (this.ToolTipVisit != null)
{
this.ToolTipVisit = CreateToolTip();
ToolTipUpdatePanel.ContentTemplateContainer.Controls.Add(this.ToolTipVisit);
}
}
Can you please provide us help in solving this issue. Thank you in advance.
Hi,
The tool tip is disappear in chrome.but not in mozila.please help me.
Yasir
Hi,
I've found an issue with the RadGrid, where the pager is showing the following buttons 1,2,3,4,5,6,7,8,9,10,...
All these buttons are working correctly. When I click on '...', I then get the following list: ...,8,9,10,11,12,13,14,15,16,17
The problem I'm having is that this second set of buttons is selecting the index from that list, so clicking '...' will go to the first page of results, '8' being the 2nd item in the list will go to page 2 etc. The control looks and behaves exactly as though one of the original options 1-10 had been selected and seems to correspond to the position/index of the selected button rather than its content.
The relevant code snippet for the pager configuration is as follows:
<telerik:RadGrid ID="rgSearchResults" AllowPaging="false" AllowSorting="false"
PageSize="25" runat="server" AllowFilteringByColumn="false" ShowGroupPanel="False"
EnableLinqExpressions="False">
<PagerStyle Mode="NumericPages" Position="TopAndBottom" AlwaysVisible="True" PageButtonCount="10" />
<ClientSettings>
<ClientEvents OnMasterTableViewCreating="MasterTableViewCreating" />
<ClientEvents OnGridCreated="OnGridCreated" />
</ClientSettings>
<MasterTableView AllowPaging="True" AllowSorting="True" PageSize="10" CommandItemDisplay="None"
DataKeyNames="ID" AutoGenerateColumns="False" ShowHeader="false">
Please could you advise on how to fix this? I've updated to the latest version of the UI for ASP.NET AJAX code. I wonder whether I'm missing some property?
Thanks
I have a RadTreeView that call OnNodeClick event, and a textbox contain "YES" or "NO"
What i have to achieve is:
Can i disable OnNodeClick event and postback when the textbox contain "NO"??
can i achieve this using OnClientNodeClicking event to cancel OnNodeClick event like this?
thank you
Hi,
I'm trying to use the Editor to give my users the ability to write a custom message template for an application, that will send notification upon certain events.
To give the users the ability to customize the notification-message, I'd like to have replaceable codes in the editor. Something like {User}, that will be replaced in the actual message with the current users name. The Editors Content is saved with these Codes and my application replaces the tags, when the message is sent.
Is it possible to change the Preview-Mode of the Editor, so I can replace this codes with data, so the user sees how the message will look like?
To summarize: Is it possible to change the content shown in the preview mode?
Thanks for your help.