Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default disabling a textbox

    How do you disable a TextBox in a datagrid in the Code
    behind?
    im using e.item.cells[1].Enabled = false..
    But this doesnt stop the user actually typing anything in
    textbox..just shows as grey?
    any idea?
    Pkenty Guest

  2. Similar Questions and Discussions

    1. Temporary Disabling?
      Is there anybody there?
    2. disabling the default X GUI
      OK, I'm an old-time Linux user, currently running Red Hat 6.1 on my laptop and 7.3, I think, on the desktop I use for work. I just installed Red...
    3. runat="server"....a simple html textbox or a webform server textbox...that is the question.
      I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the...
    4. VERY STRANGE BUG? Adding a textbox control causes other textbox control to fail???
      I've had this happen a few times too. I'm still not positive of what exactly causes it but all that's happening is the control that no longer...
    5. disabling programs in XP?
      How do I disable programs except explorer and systray. To install some new programs, programe that are running are to be disabled. I know how to...
  3. #2

    Default Re: disabling a textbox

    Hi,

    ((TextBox)e.Item.Cells[2].Controls[0]).Enabled=false; or
    ((TextBox)e.Item.Cells[2].Controls[1]).Enabled=false;

    depends on the index of your textbox control on your datagrid cell.

    Hope this helps.

    Regards,

    Marshal Antony

    ..NET Developer

    [url]http://www.dotnetmarshal.com[/url]







    "Pkenty" <anonymous@discussions.microsoft.com> wrote in message
    news:7b8c01c402d4$fab71000$a401280a@phx.gbl...
    > How do you disable a TextBox in a datagrid in the Code
    > behind?
    > im using e.item.cells[1].Enabled = false..
    > But this doesnt stop the user actually typing anything in
    > textbox..just shows as grey?
    > any idea?

    Marshal Antony Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139