Hi!
I have ListView with such markup:
How can i call Update pane refreshing by click on table row with id = "listViewRo w"?
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">