Hi, I am new in struts. It seems that the textarea of dojo can not be configured. E.g. in the following trivial jsp the editor part of textarea takes all of the browser and the textarea itself is not constrained to 3 by 3.(also there is no border). Why is this? Additionally looking in google i found in http://struts.apache.org/2.1.8/docs/ajax-and-javascript-recipes.html that dojo plugin is deprecated. Does this mean that the ajax dojo tag should not be used? .... <%...@taglib uri="/struts-dojo-tags" prefix="sx" %> <%...@taglib uri="/struts-tags" prefix="s" %> <html> <head> <s:head /> <sx:head /> </head> <body> <sx:textarea theme="ajax" cols="3" rows="3" wrap="true"></sx:textarea> </body> </html>