Hide a table column in a nested ListView - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T20:45:14Zhttp://stackoverflow.com/feeds/question/390017http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview0Hide a table column in a nested ListViewgfrizzle2008-12-23T20:34:17Z2008-12-23T21:49:15Z
<p>I have a ListView inside another ListView, and I'd like to hide a table column in the inner ListView whenever a particular parameter is passed. Given the setup below, how would I hide the ID column (both the header and the data) if the URL contains "...?id=no"?</p>
<pre><code><asp:ListView ID="ProcedureListView" runat="server">
<LayoutTemplate>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</LayoutTemplate>
<ItemTemplate>
<h4>
<%#Eval("PROCEDURE_CODE") %>
</h4>
<asp:ListView ID="BenefitListView" runat="server" DataSource='<%#Eval("benefits") %>'>
<LayoutTemplate>
<table cellpadding="5" class="indent">
<tr class="tableHeader">
<td>
ID
</td>
<td>
Benefit
</td>
</tr>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<td>
<%#Eval("benefit_id")%>
</td>
<td>
<%#Eval("benefit_name")%>
</td>
</tr>
</ItemTemplate>
</asp:ListView>
</ItemTemplate>
</asp:ListView>
</code></pre>
http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview/390042#3900421Answer by flesh for Hide a table column in a nested ListViewflesh2008-12-23T20:44:18Z2008-12-23T20:44:18Z<p>you could wrap them in a placeholder and then dynamically set the visibility of the placeholder to remove the column... (you will need two placeholders)</p>
http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview/390065#3900650Answer by Victor for Hide a table column in a nested ListViewVictor2008-12-23T20:57:42Z2008-12-23T20:57:42Z<p>you could do the following:</p>
<pre><code><% if (Request.QueryString["id"] != "no") { %>
<td>
<%#Eval("benefit_id")%>
</td>
<% } %>
<td>
<%#Eval("benefit_name")%>
</td>
</code></pre>
<p>and do the same for the header.</p>
<p>edit: you are not clear but from a previous comment, if you want to do this in the code behind then you should place the id header and the id data in a label server control. then you can check the query string in the code behind, and on data bind you could set the visible property to false.</p>
<p>there are a few options here, it really depends on what you are most comfortable with.</p>
http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview/390138#3901380Answer by rams for Hide a table column in a nested ListViewrams2008-12-23T21:36:56Z2008-12-23T21:36:56Z<p>add a css class to the HTML tags and from code behind inject the css class onto the page like so</p>
<pre><code><td id='' class='hideMe'>
ID
</td>
</code></pre>
<p>code behind, in the pre-render event</p>
<pre><code>if(id==123){
// please refer to help file for exact syntax
// but essentially you will be injecting
// <style type='text/css'>
// .hideMe{display:none;}
// </style>
}
</code></pre>
<p>Alternatively, you can include the above css class in your stylesheet and only add it to the tags you want hidden based on the ID</p>
http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview/390167#3901671Answer by Victor for Hide a table column in a nested ListViewVictor2008-12-23T21:49:15Z2008-12-23T21:49:15Z<p>if you are trying to do this from the code behind then you could do this:</p>
<p>On the onBind event for the outer ListView you would find the inner listview control, and then find the label you want and change the visible property to false. i answered this on your other question.</p>
<p>good luck!</p>