vote up 1 vote down star

Hi, I'm making a web app. In it there are times when a form may be "read only". To simulate this with HTML, I have it so that all the (dynamically created) text boxes that contain content are disabled. This works fine enough, but if there is very much text and not all of it is visible at once(especially in multi-line boxes) then there isn't a way for the user to scroll around in it. Also, another issue is its not possible to copy and paste text from disabled text boxes.

So what I am needing is a way to make it so you can not modify the content in a textbox, but you can select the text, and the scroll bar works.

Also, I'm testing this in Firefox 3.5, though I believe IE has similar problems.(something compatible with both please)

flag

3 Answers

vote up 3 vote down check

Use JS:

<input type="text" readonly="readonly" onfocus="this.blur();" />

Also, perhaps make a scrollable div instead (overflow:auto; in CSS)?

link|flag
It's good to note that to add "misc." attributes to dynamic controls in C#, use control.attributes("readonly","readonly"); the onfocus bit doesn't do anything at all for me, I think I'll make the background red or something when they select it to signal if they are going to try to edit it – earlz Nov 3 at 16:01
vote up 3 vote down

What about simply using a <div> element with a static height/width and overflow: auto? You can add additional styles to make it look like a <textarea>, if desired.

link|flag
I would rather it look like something the user once put in(but is now locked) rather than like a paragraph of text I put in – earlz Nov 3 at 16:17
vote up 2 vote down

EDIT: Made swallowed tag visible. Now it makes sense.

this.blur() will make it impossible to select, I think.

<input type="text" readonly>

should help. Is HTML 4 and XHTML 1.0 compatible. Don't know about future compatibility though (i.e. HTML 5).

link|flag

Your Answer

Get an OpenID
or

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