Switching validation on | off

2004-03-31 Thread Frank Schaare
Hi, i have a dynaValidatorForm declared with validate="true". Under certain conditions, i´d like to turn validation off. Is there any chance to achive this on the fly ? -- +++ NEU bei GMX und erstmalig in Deutschland: TÜV-geprüfter Virenschutz +++ 100% Virenerkennung nach Wildlist. Infos: http:/

[DisplayTag]How to avoid 'context switching' when sorting columns

2004-04-08 Thread Frank Schaare
Hi, i´ve got a sortable table with an actionbar generatet by decorator. The decorator returns dynamic links like this: return "doIt". Though, an action in http://{myContext}/doSomething.do?id=x is called. This worked fine for me, until i tried to sort some colunms. Now, the jsp calls itself rek

Problems with Tomcat 4.1.30 (Linux)

2005-02-15 Thread Frank Schaare
Hi, IÂve developed my Struts application with Tomcat 4.1.30 (Windows). Everything works fine, i tested my stuff withe different browsers, different Eclipseversions etc. There is a fomularBean whitch holds some prefetched data in key-value maps, some as a vector, some as RowSetDynaBeans, some as

Re: Problems with Tomcat 4.1.30 (Linux)

2005-02-15 Thread Frank Schaare
Frank Schaare wrote: please select ... Now, i deployed my app in Tomcat 4.1.30 (Linux) and all my selects are useless ! All values are rendered in the first option like: please select ...GermanyFranceUSAItaly etc. - To

Re: Problems with Tomcat 4.1.30 (Linux)[SOLVED]

2005-02-18 Thread Frank Schaare
Hi, i solved that problem. I deployed my files with WinSCP and forgot to copy those JSP´s as textfiles. In Windows, new line is CRLF in Linux it is LF. This little difference makes a lot of damage if taglibs are used... So long

Re: [OT]Struts Application + Eclipse + NitroX

2005-02-18 Thread Frank Schaare
Hi, they ship their tool with a patched version of eclipse. I don´t think, that it works with the 'standard' eclipse... Caroline Jen schrieb: I am building a Struts application using the Eclipse. The NitroX, which can be found at http://www.m7.com looks like a neat JSP debugging tool. I have dow

logic TagLib and getRemoteUser()

2005-02-03 Thread Frank Schaare
Hi, iÂd like to diplay an image whether the user is loged in or not (CMS). Therefore iÂd like to use the logig taglib, but i canÂt access the request object. Any jsp fragment like <%=request.getRemoteUser()%> works fine, but how do i translate this into suitable arguments for the logic tags ? t

Re: logic TagLib and getRemoteUser()

2005-02-03 Thread Frank Schaare
Hi, Do you mean that you want to display one image if the user is logged in and a different image if the user is not logged in? Exactly. <%=request.getRemoteUser()%> is null when the user ist not loged in. If so <%=request.getRemoteUser()%> gives me the string of the username. IÂm looking for

Re: logic TagLib and getRemoteUser()

2005-02-04 Thread Frank Schaare
Niall Pemberton schrieb: Jakarta Taglibs appears to have such a thing: http://jakarta.apache.org/taglibs/doc/request-doc/intro.html http://jakarta.apache.org/taglibs/doc/request-doc/request-1.0/index.html#request So you should be able to do what you want, i.e indeed ! Seems, that i overlooked t