pencilCake
pencilCake

Reputation: 53263

How can I remove the border of a textArea in extJs?

I am new to extJs. I want to make the border of a textarea invisible so that it becomes just a blank white space (My purpose is to show it inside a fieldset).

Hoe can I achieve this?

thanks

Upvotes: 2

Views: 7833

Answers (1)

Digital Human
Digital Human

Reputation: 1637

use the style: border: none; so:

var textArea = {
fieldLabel: 'Test',
style: 'border: none;',
hideBorders: true
};

Upvotes: 4

Related Questions