<
telerik:radrotator ID="RadRotator1" runat="server"
DataSourceID="ObjectDataSource1" FrameDuration="0" width="100%" ScrollDuration="2000">
<ItemTemplate>
<asp:Panel ID="Panel2" SkinID="UserPhotoStripPan" runat="server">
<small><asp:Label ID="Label1" runat="server" Text='<%# Eval("UserName")%>'></asp:Label></small>
<table border="0" cellpadding="0" cellspacing="0" class="photo-frame">
<tr>
<td class="topx--"></td>
<td class="top-x-"></td>
<td class="top--x"></td>
</tr>
<tr>
<td class="midx--"></td>
<td>
<asp:Image ID="Image1" runat="server" Width="25" ImageUrl='<%#Eval("ProfileImageURL")%>' />
<td class="mid--x"></td>
</tr>
<tr>
<td class="botx--"></td>
<td class="bot-x-"></td>
<td class="bot--x"></td>
</tr>
</table>
</asp:Panel>
</ItemTemplate>
</telerik:RadRotator>
<
asp:Panel SkinID="UserPhotoStripPan" Width="90" BackColor="#CC66FF" BorderColor="#00CC00" BorderWidth="1" BorderStyle="Outset" style="padding: -10px;" runat="server"></asp:Panel>
<ClientSettings>
<Selecting AllowRowSelect="True" />
<Scrolling AllowScroll="True" FrozenColumnsCount="2" SaveScrollPosition="true" UseStaticHeaders="True"/>
</ClientSettings>
If i scroll horizantally it is taking lot of time compare to loading.
Thanks
Vairamuthu
Hi,
Are there any issues with using your RadAjaxManager and hooking it to specific events for a user control?
I have the following in my main page:
| <asp:Content ID="Content1" ContentPlaceHolderID="Content1" Runat="Server"> |
| <Telerik:RadAjaxManager ID="ajaxManager" runat="server" DefaultLoadingPanelID="stickyLoadingPanel"> |
| <AjaxSettings> |
| <Telerik:AjaxSetting AjaxControlID="ucElementBrowser" EventName="ElementSelected"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="phElement" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| <Telerik:AjaxSetting AjaxControlID="phElement$ucElement" EventName="Save"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="lblNotification" /> |
| <Telerik:AjaxUpdatedControl ControlID="ucElementBrowser" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| <Telerik:AjaxSetting AjaxControlID="phElement$ucElement" EventName="Delete"> |
| <UpdatedControls> |
| <Telerik:AjaxUpdatedControl ControlID="lblNotification" /> |
| <Telerik:AjaxUpdatedControl ControlID="ucElementBrowser" /> |
| </UpdatedControls> |
| </Telerik:AjaxSetting> |
| </AjaxSettings> |
| </Telerik:RadAjaxManager> |
| <UserControl:ElementBrowser ID="ucElementBrowser" runat="server" OnElementSelected="ucElementBrowser_ElementSelected" /> |
| <CustomControls:LabelNotification ID="lblNotification" runat="server" /> |
| <CustomControls:DynamicControlsPlaceholder ID="phElement" runat="server" OnControlRestored="phElement_ControlRestored" /> |
| </asp:Content> |
Sir,
My radgrid is showing repeated records while taking frm the publshd prject..Dataset values are correct.ie,,no repeatition..This prbm is occuring when the system is fast..if we put the system idle,,and then refresh the IE,no repetition occuring..
I am really confused as i can get this bug when running from the visual studio..only occuring in published site....
if any idea plz help me...
Thanks