I have a select checkbox that has invisible set to false. ASPX looks like this:
<input name="selGR" id="selGR" type="checkbox" checked="checked" visible="false" runat="server" fieldname="GR"/>
The select box is not even rendered in the HTML which explains why JQuery is not finding it. Is there a way around this?
EDIT: Setting style works! Thanks. I am curious to know if there are any rules the .NET framework follows when rendering controls with visible="false"? For all controls irrespective of whether they are server, custom or html controls, it follows this rule? Also, any side effects of setting the style instead of setting the property of visible?