Hide a table column in a nested ListView - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:45:14Z http://stackoverflow.com/feeds/question/390017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview 0 Hide a table column in a nested ListView gfrizzle 2008-12-23T20:34:17Z 2008-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>&lt;asp:ListView ID="ProcedureListView" runat="server"&gt; &lt;LayoutTemplate&gt; &lt;asp:PlaceHolder ID="itemPlaceHolder" runat="server" /&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;h4&gt; &lt;%#Eval("PROCEDURE_CODE") %&gt; &lt;/h4&gt; &lt;asp:ListView ID="BenefitListView" runat="server" DataSource='&lt;%#Eval("benefits") %&gt;'&gt; &lt;LayoutTemplate&gt; &lt;table cellpadding="5" class="indent"&gt; &lt;tr class="tableHeader"&gt; &lt;td&gt; ID &lt;/td&gt; &lt;td&gt; Benefit &lt;/td&gt; &lt;/tr&gt; &lt;asp:PlaceHolder ID="itemPlaceHolder" runat="server" /&gt; &lt;/table&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;td&gt; &lt;%#Eval("benefit_id")%&gt; &lt;/td&gt; &lt;td&gt; &lt;%#Eval("benefit_name")%&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; &lt;/ItemTemplate&gt; &lt;/asp:ListView&gt; </code></pre> http://stackoverflow.com/questions/390017/hide-a-table-column-in-a-nested-listview/390042#390042 1 Answer by flesh for Hide a table column in a nested ListView flesh 2008-12-23T20:44:18Z 2008-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#390065 0 Answer by Victor for Hide a table column in a nested ListView Victor 2008-12-23T20:57:42Z 2008-12-23T20:57:42Z <p>you could do the following:</p> <pre><code>&lt;% if (Request.QueryString["id"] != "no") { %&gt; &lt;td&gt; &lt;%#Eval("benefit_id")%&gt; &lt;/td&gt; &lt;% } %&gt; &lt;td&gt; &lt;%#Eval("benefit_name")%&gt; &lt;/td&gt; </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#390138 0 Answer by rams for Hide a table column in a nested ListView rams 2008-12-23T21:36:56Z 2008-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>&lt;td id='' class='hideMe'&gt; ID &lt;/td&gt; </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 // &lt;style type='text/css'&gt; // .hideMe{display:none;} // &lt;/style&gt; } </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#390167 1 Answer by Victor for Hide a table column in a nested ListView Victor 2008-12-23T21:49:15Z 2008-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>