views:

36

answers:

1

Hi,

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

+1  A: 

use the style: 'border: none;' so:

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

Digital Human
Thanks, now I am able to hide borders but it seems there is a shadow effect by default on the top. No idea how to remove that :(
burak ozdogan