admin管理员组文章数量:1344413
In my page_load
event I have this code :
myTextbox.focus().
So when I set my textbox to visible=false
my code doesn't work.
In my page_load
event I have this code :
myTextbox.focus().
So when I set my textbox to visible=false
my code doesn't work.
- hidden:elements can't be focused,clicked,keyup..... – bugwheels94 Commented Jul 26, 2012 at 15:18
4 Answers
Reset to default 12Hidden controls are not focusable. Set the Opacity to 0 instead.
You cannot. If something isn't rendered, it cannot be interacted with, so you cannot set the focus to it.
Focus means that user input is focused to the control, that means if the control is a text-box, the text input cursor will be placed in the control or if it is a checkbox, the checkbox will be focused and may be selected by pressing space, you can't put a text input cursor in a hidden control and it cannot be used for any user input.
If you still want to set focus for some reason, try setting its height and width to Zero.
Like style="height:0px; width:0px"
and use Page.SetFocus(yourControl);
to set focus
When you set the Control.Visible
property to false it doesn't just hide the control on the page. It omits that control from being rendered on the client's browser entirely, but "remembers" everything about that control on the server for future postbacks.
If you actually do a client side hide (i.e. set the CSS Style display: none;
then it will still exist on the page, but just be hidden. At that point you can focus it.
本文标签: cHOW to set Focus on a hidden TextboxStack Overflow
版权声明:本文标题:c# - HOW to set Focus on a hidden Textbox - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743666070a2518747.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论