forum

Home / DeveloperSection / Forums / How do I hide particular label in nested listview

How do I hide particular label in nested listview

syeda s 1479 14-Aug-2016
listview is the parent control in that i took the child control for popup.my problem is that with child control i want to hide the particluar label so that the user when clicked on popup the details should be showned which admin wanted to show.please help me out..i saw in internet that we can do with event bubbling like nested listview inside linkbutton..but i want nested listview inside label to b hidden.

What I have tried:

<tbody id="divcomp" runat="server">
<asp:ListView ID="ddlcomputers" runat="server" DataKeyNames="Cid" OnItemCommand="ddlcomputers_ItemCommand" OnItemDeleted="ddlcomputers_ItemDeleted">
<asp:Label ID="lblComputerNamee" runat="server" Text='<%#Eval("ComputerName") %>'>
<img class="md-trigger" data-modal='<%#Eval("ComputerName") %>' align="absmiddle" src="../html/images/info.png" runat="server" width="24" height="24" alt="" />
<asp:Label ID="lblCid" runat="server" Text='<%#Eval("Cid") %>' Visible="false">
<asp:ListView ID="ListView1" runat="server">

Updated on 03-Jul-2023

Can you answer this question?


Answer

1 Answers

Liked By