This is a migrated thread and some comments may be shown as answers.

How to do post back reapter

1 Answer 23 Views
SocialShare
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 26 Aug 2014, 09:38 AM
Mycode: 
<telerik:RadAjaxManagerProxy ID="uxRMP" runat="server">
    <AjaxSettings>
        <ext:AjaxSetting AjaxControlID="bt_sencomments">
            <UpdatedControls>
                <ext:AjaxUpdatedControl ControlID="rpcommentcontainner" LoadingPanelID="uxLoadingPanel" UpdatePanelCssClass="" />
            </UpdatedControls>
        </ext:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>
 <div id="commentsContainer">
            <asp:Repeater runat="server" ID="rpcommentcontainner">
                <ItemTemplate>
                    <div class="commentWrapper">
                        <img alt="avatar" src='<%#ProcessingImage((byte[])Eval("ProfilePicture"))  %>'>
                        <span>
                            <strong>From: </strong><%# Eval("FullName")%> - <%#Eval("CreatedDate")%>
                            
                        </span>
                        <div class="commentContent">
                            <%# Eval("CommentContent")%>
                        </div>
                    </div>
                </ItemTemplate>
            </asp:Repeater>
        </div>
------------
I dont see effect, webpage have loaded again!
Do you have a method for me?

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 29 Aug 2014, 08:21 AM
Hello David,

Please try wrapping the Repeater within an asp:Panel and add this container panel to the AjaxSettings of the manager:
http://demos.telerik.com/aspnet-ajax/listview/examples/paging/pagingwithraddatapager/defaultcs.aspx

Alternatively, you can use a RadAjaxPanel:
http://demos.telerik.com/aspnet-ajax/listview/examples/dataediting/net2automaticdataediting/defaultcs.aspx

Hope this helps.

Regards,
Eyup
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
SocialShare
Asked by
David
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or