Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my aspx page I have a tr which is set visible="false" by default. But on a selected index of a dropdown I make it visible="true". On the form submit I am validating the control within the tr but couldn't find whether the tr is visible or not using JavaScript.

My aspx:

<tr id="MeasurementTr" runat="server" visible="false">
    <td>
        &nbsp;</td>
    <td class="table_label">
        Measurement</td>
    <td>
        &nbsp;</td>
    <td>
        <asp:DropDownList ID="DlMeasurement" runat="server">
        </asp:DropDownList>
    </td>
    <td>
        &nbsp;</td>
</tr>

and my JavaScript code,

 alert(document.getElementById("ctl00_ContentPlaceHolder1_MeasurementTr").style.visibility);
 if (document.getElementById("ctl00_ContentPlaceHolder1_MeasurementTr").style.visibility=="visible"){
     if (document.getElementById("ctl00_ContentPlaceHolder1_DlMeasurement").selectedIndex == 0) {
         document.getElementById("ctl00_ContentPlaceHolder1_ErrorMsg").innerHTML = "Please Select Your Measurement";
         document.getElementById("ctl00_ContentPlaceHolder1_DlMeasurement").focus();
         return false;
     }
 }

But my alert shows nothing. It didn't show null or undefined.

share|improve this question

2 Answers

up vote 1 down vote accepted

The visible property of asp.net does not alter the CSS visibility property.. when it is true, asp.net will not render the element at all on the client side, so you cannot access it..

Use a class with visibility:hidden display:none instead..

[udpate]

changed the suggestion to display:none after cheeso's comment, since visibility:hidden will retain the space the element occupies, while the display:none takes no space in the rendered page.. it is, most likely, what you need ...

share|improve this answer
Also consider the css display:none style. It's different from visibbility but may be what you want. devx.com/tips/tip/13638 – Cheeso Mar 9 '10 at 12:00
@cheeso, very true.. i will add this to the answer.. – Gaby aka G. Petrioli Mar 9 '10 at 12:05
yep, in css, the display:none is closer than visibility:hidden to the visible property of ASPNET. – Cheeso Mar 9 '10 at 12:24

The visible property can take the values hidden, visible or collapse.

true and false are invalid CSS.

The .style.* properties represent inline CSS (as specified in the style attribute). If you set a value using a stylesheet, that will not be reflected in the .style.* on the element.

As a rule of thumb, you are usually better off modifying .className.

share|improve this answer
2  
the visible property is an asp.net property ... the CSS one is visibility .. – Gaby aka G. Petrioli Mar 9 '10 at 11:44
@David in my selected index changed event i ve given protected void DlMeasurement_SelectedIndexChanged(object sender, EventArgs e) { MeasurementTr.Visible = true; – Oscar Mar 9 '10 at 11:45
@Gaby how to get asp.net property in javascript... – Oscar Mar 9 '10 at 11:47
@Pandiya, take a look at my answer.. your element does not get rendered at all, so there is nothing to access.. – Gaby aka G. Petrioli Mar 9 '10 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.