Having some trouble entering text in a textArea. I have a simple DynamicForm with a textArea. When I click the textArea I am not able to enter anything in it. If I double click I see a cursor and I can input text. The other way that I can enter text is by holding mouse down and typing. Code works in IE/FF/Safari so I am at a loss.
Here is my code
DyanmicForm form = new DynamicForm();
TextArea textArea = new TextArea();
form.setFields(textArea);
My CSS settings
textarea
{
resize: none;
overflow: auto;
display: block;
-webkit-user-select: auto;
-webkit-user-modify: read-write-plaintext-only;
-webkit-appearance: textarea;
}