hide row
-
hi, i have page with content place holder and in that i have multiview and in that :) i have a html tabel and i am wondering if is it possible to make a row hide(visible=false), or that cant be done????
-
hi, i have page with content place holder and in that i have multiview and in that :) i have a html tabel and i am wondering if is it possible to make a row hide(visible=false), or that cant be done????
to hide a row .. in html Table, You might use :
td.style.visibility = 'hidden';
and to show it again use :td.style.visibility = 'visible';
You need to use Javascript to do this.Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
hi, i have page with content place holder and in that i have multiview and in that :) i have a html tabel and i am wondering if is it possible to make a row hide(visible=false), or that cant be done????
Give div tag give it an id make it run at = server and in the programming give id.visible =false.
<div id ="ssd" runat="server">
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:FileUpload ID="FileUpload1" runat="server" /> </div>
protected void Page_Load(object sender, EventArgs e)
{
ssd.Visible = false;}
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
hi, i have page with content place holder and in that i have multiview and in that :) i have a html tabel and i am wondering if is it possible to make a row hide(visible=false), or that cant be done????
Hi If you want other elements fill the row's room you must use
obj.style.display="none";
Mohammad Khansari