0
votes
2answers
26 views
how to wrap textarea
how to wrap the text in textarea so that word will not be overflown to rightside and written in new line.
0
votes
2answers
22 views
How to format text in flex TextArea?
TextArea in flex doesn't render <TABLE></TABLE>.
I want to display text in textarea in two columns.
Column1 Column2
Row1: Data, data, data row1
Row2 longer: …
0
votes
1answer
20 views
jQuery auto expanding textareas acting strange
I have tried various different jQuery autogrow/expand text area plugins, and they all work good and well on the demo page but for some reason whenever I implement them into my existing site, they act …
0
votes
1answer
33 views
Flex: How to change caret (text cursor) in editable text area / text input
I need to put together an editable text area that has a custom caret (cursor) which is different from the default blinking vertical line.
Is the caret a "skinnable" property of text input?
Please …
2
votes
1answer
75 views
Is there a profitable way to record user actions in textarea?
I need to send bunch of commands to the server on timer - like:
put(0,"hello")
del(4,1)
put(4," is around the corner")
so I need to monitor and record all of the user input and compile/flush it on …
0
votes
1answer
31 views
Grabing text from non java application
Is it possible to grab textarea using java from another non-java application?
Known way is OCR with java.awt.Robot in my opinion is too complex and non effective if grabbed area is in the minimized …
1
vote
4answers
62 views
Dynamicaly Chaning the <textarea > size,style
How can i change the field size diynamicaly?
I have a select field and there are 3 options with different values.
So if the user selects one of them in the you see the values.
But how can i …
1
vote
3answers
96 views
How to get number of rows in <textarea >?
With javascript,is it possible?
EDIT
let me be more specific.
I mean:the exact number of rows in a textarea.
Here it's 10 rows in my post.
Anyone knows?
0
votes
2answers
40 views
How to calculate the height of text (width fixed)?
I want to create a text box with a fixed width that will fit itself to its current text. So I went ahead and wrote this simple application:
<?xml version="1.0" encoding="utf-8"?>
…
0
votes
3answers
56 views
labels in textarea
<input name="textbox" type="text" value="Click here to type" onfocus="if(this.value=='Click here to type')this.value='';" onblur="if(this.value=='')this.value='Click here to type';">
…
1
vote
1answer
24 views
Making textarea display the same in WebKit as in other browsers
Webkit decided there weren't enough browser incompatibilities and added 2px of padding to my textarea. However, if I set padding:0 then it looks awful when typed in. Is there a way I can make it the …
1
vote
2answers
31 views
textarea removes whitelines?
I have multiline textbox in ASP.NET which renders to a textarea element. I set the Text property to a string like
test\r\n\r\n\r\ntest2
but it only renders like
test
test2
in the textarea while …
0
votes
2answers
60 views
jQuery wrap selected text in a textarea
how can i get the user selected text(just inside textarea) and apply actions to it something like wrap the selection [#bold]selected text[/bold] , thanks
0
votes
1answer
97 views
To auto fill a text area using php curl.
Hi Friends,
We are trying to auto populate a form which is having a text area.
<textarea name="myarea"></textarea>
We can do it using curl however it is accepting only the part of the …
2
votes
2answers
56 views
PHP - want to check if user input has website address in it
I want that whenver a user inserts "www." in a comment textarea, the address from "www." until the first space will be a replaced with a link to that address:
"I love www.google.com"
turns into
"I …
