How to call update pane refreshing by list view row click

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vellor
    New Member
    • Feb 2012
    • 3

    How to call update pane refreshing by list view row click

    Hi!
    I have ListView with such markup:

    Code:
    <asp:UpdatePanel ID="updateMyDocs" UpdateMode = "Always" runat="server">
            <ContentTemplate>
    <asp:ListView ID="dataViewFiles" ItemPlaceholderID="itemPlaceholder" runat="server"
                                                   DataKeyNames="Id" OnItemDataBound="dataViewFiles_ItemDataBound" OnSelectedIndexChanging="dataViewFiles_SelectedIndexChanging">
                                                <LayoutTemplate>
                                                    <table style="" cellpadding="8" cellspacing="0">
                                                        <tr>
                                                            <%--<th class="FileTableHeader">
                                                            </th>--%>
                                                            <%--<th class="FileTableHeader">
                                                                Id
                                                            </th>--%>
                                                            <th class="FileTableHeader">
                                                                Name
                                                            </th>
                                                            <th class="FileTableHeader">
                                                                Date
                                                            </th>
                                                            <th class="FileTableHeader">
                                                                Type
                                                            </th>
                                                        </tr>
                                                        <tr id="itemPlaceholder" runat="server">
                                                        </tr>
                                                    </table>
                                                </LayoutTemplate>
                                                    <ItemTemplate>
                                                        <tr id="listViewRow"      class="FileTableRow" runat="server">
    How can i call Update pane refreshing by click on table row with id = "listViewRo w"?
Working...