Protected Sub rttm_AjaxUpdate(ByVal sender As Object, ByVal e As ToolTipUpdateEventArgs) If e.TargetControlID.Contains("imgRotator") Then If IsNumeric(e.Value) Then End If End If End SubProtected Sub radRotator_ItemDataBound(ByVal sender As Object, ByVal e As RadRotatorEventArgs) Handles radRotator.ItemDataBound Dim hidLogisticProductKey As HiddenField = e.Item.FindControl("hidLogisticProductKey") Dim imgRotator As System.Web.UI.WebControls.Image = e.Item.FindControl("imgRotator") Dim nProductKey As Integer = Convert.ToInt32(hidLogisticProductKey.Value) rttm.TargetControls.Add(imgRotator.ClientID, nProductKey, True) End Sub<telerik:RadToolTipManager ID="rttm" Skin="Windows7" RelativeTo="Element" ShowEvent="OnMouseOver" Width="100" Height="100" Position="TopRight" OnAjaxUpdate="rttm_AjaxUpdate" ViewStateMode="Disabled" runat="server"> </telerik:RadToolTipManager> <asp:Label ID="lblProductDescriptionTooltip" ViewStateMode="Disabled" runat="server"></asp:Label> <telerik:RadRotator ID="radRotator" Width="500" ScrollDirection="Right" RotatorType="AutomaticAdvance" ScrollDuration="1000" FrameDuration="500" runat="server" Height="100px"> <ItemTemplate> <div> <asp:Image ID="imgRotator" runat="server" ImageAlign="Middle" Style="margin: 2px" ImageUrl='<%# GetImage(Container.DataItem) %>' Height="100px" Width="100px" /> <asp:HiddenField ID="hidLogisticProductKey" Value='<%# Bind("LogisticProductKey") %>' runat="server" /> </div> </ItemTemplate> </telerik:RadRotator>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules runAllManagedModulesForAllRequests="true"/>
<handlers accessPolicy="Read, Script">
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ChartHandler" path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI" />
</handlers>
</system.webServer>
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.IgnoreRoute("{controller}/{resource}.axd/{*pathInfo}"); // This is new
routes.IgnoreRoute("{controller}/{action}/{resource}.axd/{*pathInfo}"); // This is new
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
}
Then I added a RadChart to the About view and bound it to an XML data file containing:
<?xml version="1.0" encoding="utf-8" ?>
<people>
<person name="Brown, William" all="20" some="50" few="25" notassessed="5" />
<person name="Edwards, Kimberly" all="30" some="45" few="20" notassessed="5" />
<person name="Evans, Sarah" all="80" some="10" few="5" notassessed="5" />
<person name="King, Elizabeth" all="25" some="35" few="35" notassessed="5" />
<person name="White, Mark" all="50" some="20" few="10" notassessed="20" />
</people>
Then I added the click hander and DataBound handler to the chart.
Then when I run the application and show the About view, The chart shows, but the click handler is not called, but other event handlers are called.
Any help would be appreciated,Thanks,
Kelly.
I have a stack column in RadGrid (shown in below image) and I want to apply sorting on the both fields of that column. For the sorting these columns I had applied my own logic and I could sort the columns but I am not able to apply color on column header and the ascending descending image which comes when we use default sorting of RadGrid.
Please tell me how to apply color and image to that column while sorting and when we sort with this stack column then the column, which we had sorted previously should get the default column header style.
Or Is there any alternative to sort the stack columns?
Please reply ASAP.

<GroupingSettings CaseSensitive="false" />
<ClientSettings>
<DataBinding SelectMethod="GetAllOffices" Location="UserDetails.aspx" EnableCaching="true" FilterParameterType="Linq" />
<Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" />
</ClientSettings>
<MasterTableView>| I have a rad tree list with client select column,I tried to select the raw but select command is not firing on selecting the raw using client select column. can you help me? regards |

Hi,
We were using Telerik Controls of version 2008.2.1001.35 earlier. Now, we are using Telerik Controls of version 2012.1.215.35.
Our TFS build engine server is in IST timezone and our deployment server is in CST timezone.
When we had a build with 2012 version Telerik Controls, Telerik dlls modified date and time will be 1:00PM.
If we deploy this build to our deployment server which is of CST timezone (2:30AM), then we were getting awkward user interface for the deployed application.
Earlier, we were not getting awkward user interface by previous version (2008.2.1001.35) for this time difference.
Please clarify.
Team,
I have added attribute to RadDatePicker control while dynamically creating it.
This attribute contains the date time of the control creation(DateTime.Now.ToString()).
I have retrieved attribute value from in client side.
But I am not able to set Raddatepickers value to that attribute value in client side .
Please let me know how I can achieve this task?
Any help will be appreciable.
Regards,
Sampada
