RE: Struts vs Other competitors

2009-07-27 Thread Andrey Rogov
Thank you Martin, Sooner or later we start considering programming as business. It's critical to develop new products or new versions with parameters that would be faster, more quality and less expensive. I agree with Matt Rable that JSF programming based on RAD methods makes us transition to JS

RE: Struts vs Other competitors

2009-07-26 Thread Andrey Rogov
Martin, What do you think about Oracle ADF ? -Original Message- From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Sunday, July 26, 2009 4:42 PM To: Struts Users Mailing List Subject: RE: Struts vs Other competitors Raible rated Struts as "poor support" support in JSF is based on

Re[2]: some best practices questions ( Neal Ford about caching )

2004-07-19 Thread Andrey Rogov
Hi, Enhancing Web Application Performance with caching by Neal Ford. http://www.theserverside.com/articles/content/Caching/article.html >> -Original Message- >> From: Michael McGrady [mailto:[EMAIL PROTECTED] >> Sent: 08 July 2004 09:14 >> To: Struts Users Mailing List >> Subject: RE:

Re[2]: Question on parameterizing action attribute to html:form

2004-07-18 Thread Andrey Rogov
Hi Rick, there is another way to work with parameter form:action. If you use Tiles in your applications create one reusable tiles lay with elements of design, control buttons and page control. In this case you can use the page with many forms. Then solution can be replaced with . What do you

[OT] Documents version

2004-06-30 Thread Andrey Rogov
How is the problem of the documents version solved? I need to take one form of the document for the first request and the other (with other date) – for the second request. ( In time new fields can be added into the document ). -- Best regards, Andrey mailto:[EMAIL PROTEC

Re: Charts with struts

2004-06-14 Thread Andrey Rogov
try this http://cewolf.sourceforge.net/ RZ> Hi everybody RZ> does anybody know a way to dynamically create a chart and display it in a JSP. I will read the underlying data from a database. RZ> TIA Rene -- Best regards, Andreymailto:[EMAIL PROTECTED]

Re[2]: Caching data from resultset

2004-06-14 Thread Andrey Rogov
You can try the following. If there are no data in the cache you can select SQL : SELECT *.blah..., rownum FROM ( SELECT *.blah... FROM portal.dbtables dbt WHERE ORDER BY dbt.datemessage desc

Re: Hi:

2004-06-14 Thread Andrey Rogov
Struttin with STRUTS lessons from Rick Reumann www.reumann.net Free JAKARTA-STRUTS LIVE book http://www.theserverside.com/books/sourcebeat/JakartaStrutsLive/index.tss g> Hi All, g> I m a new user of struts.still on R&D.on my forthcoming project i m going to work on struts.can any bod

Dynaforms + w1251

2004-05-30 Thread Andrey Rogov
To work with "windows-1251" coding in forms I described the line request.setCharacterEncoding( "windows-1251" ) in the reset method. It allowed me to enter Cyrillic symbols in the database. How do I install "windows-1251" for DynaForms? Help is appreciated , Best regards, Andrey

Re: javascript -check all

2004-04-16 Thread Andrey Rogov
function checkAll() { for ( var i=0; i Hi aa> Probably slightly off topic aa> but i ahve a jsp using struts that has a table with rows.each row has a check box.I have a checkbox at the top of the table, clicking which, i want all below checkboxes to be checked..has anyone aa> implemented th