c# - HOW to set Focus on a hidden Textbox - Stack Overflow

In my page_load event I have this code : myTextbox.focus().So when I set my textbox to visible=false my

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.

Share edited Jul 26, 2012 at 15:26 phadaphunk 13.3k16 gold badges75 silver badges109 bronze badges asked Jul 26, 2012 at 15:17 wbenwben 2472 gold badges7 silver badges20 bronze badges 1
  • hidden:elements can't be focused,clicked,keyup..... – bugwheels94 Commented Jul 26, 2012 at 15:18
Add a ment  | 

4 Answers 4

Reset to default 12

Hidden 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743666070a4486993.html

相关推荐

  • c# - HOW to set Focus on a hidden Textbox - Stack Overflow

    In my page_load event I have this code : myTextbox.focus().So when I set my textbox to visible=false my

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信