<
div class="rotator_mainimage" style="height: 344px; margin-top: 14px">
<div style="width: 90%">
<telerik:RadRotator ID="NewsRotator" runat="server" DataSourceID="xmlDataSource1"
RotatorType="Buttons" ScrollDirection="Up, Down" Height="351px"
Width="403px" BorderStyle="None" style="margin-top: 0px"
FrameDuration="4000">
<ItemTemplate>
<div class="rotator_eventtitle" style="text-align: left">
<%
#XPath("EventTitle")%>
</div>
<div class="rotator_eventdetails" style="text-align: left">
<%
#XPath("EventDetails")%>
</div>
<div class="rotator_eventdetails_url" style="text-align: left">
<a href='<%# Xpath("EventDetailsURL") %>' target="_blank">
More
</a>
</div>
</ItemTemplate>
</telerik:RadRotator>
</div>
</div>
<asp:XmlDataSource ID="xmlDataSource1" runat="Server" DataFile="~/App_Data/NewsRotator.xml"></asp:XmlDataSource>
</
div>

Hey there,
I am listing users in the grid that are part of a domain e.g. Telerik\John.....However, I am finding great difficulty in filtering for values as the user needs to type in two \\ for the search to return correct data. I cannot tel the user to type in two \\ as they would not want that and well, you know users :) So, I tried the onneeddatasource event, onpageload etc to changethe FilterExpression, the problem is, by the time I can access the filterexpression, telerik has already romoved the one \ and it searches for Telerikjohn.
Please help!!!!