Re: tag in javascript alert

2003-06-12 Thread Martin Fekete
try this ... errors.header =alert( errors.prefix =" errors.suffix ="+ "\\n" + errors.footer ="");\n ... function load() { } ... ... it should work but it won't because of http://issues.apache.org/bugzilla/show_bug.cgi?id=17418 so you need to hack org.apa

Re: tag

2002-02-25 Thread Martin Fekete
try something like this ... Feky - Original Message - From: "Dua, Amit" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Monday, February 25, 2002 7:34 PM Subject: tag > Is there a way of comparing two session variables using struts logic tag.

Re: Struts tag for label

2002-02-21 Thread Martin Fekete
try Feky - Original Message - From: "Jakkampudi, ChandraseKhar" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Thursday, February 21, 2002 6:38 PM Subject: RE: Struts tag for label > Is there a way to have display only properties on a form? For example

Re: Struts tag for label

2002-02-21 Thread Martin Fekete
work's fine for me ... Feky PS: don't forget bean taglib directive ... - Original Message - From: "Maris Orbidans" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, February 21, 2002 6:35 PM Subject: Struts tag for label > > hello > > What if I

Re: Using a tag to compare two beans

2002-01-24 Thread Martin Fekete
you got two beans (b1, b2) and properties in each of them (b1.p1, b2.p2) then this should work ... Feky - Original Message - From: "Afshartous, Nick" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 23, 2002 8:41 PM Subject: Using a tag to compare two beans > >

Re: CHARACTER ENCODING !

2002-01-24 Thread Martin Fekete
encoding of property files don't affect encoding of JSP files. i write my .properties files in Cp1250. then i convert it using native2ascii. all my JSP are Cp1250 (contentType="text/html; charset=windows-1250") and everything works fine. problem in this case might be that your JSP is not saved i

Re: CHARACTER ENCODING !

2002-01-24 Thread Martin Fekete
truts-bean.tld" prefix="bean" %> > > > > <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> > > > > <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> > > > > > > > > > > &

Re: Using CSS with struts jsp's

2002-01-24 Thread Martin Fekete
Hi, using and relative paths are OK but not when using templates. solution that works fine is simple ... TYPE="text/css"> Feky - Original Message - From: "Ted Husted" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, January 24, 2002 4:27 AM Subj

Re: Can't start a cloned connection while in manual transaction mode.

2002-01-22 Thread Martin Fekete
ramalingam" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, January 22, 2002 6:49 PM Subject: Re: Can't start a cloned connection while in manual transaction mode. > Thanks Mark!, it works. > Any idea why we need to do

Re: Can't start a cloned connection while in manual transaction mode.

2002-01-22 Thread Martin Fekete
add to your connection URL SelectMethod=cursor feky - Original Message - From: "sridhar ramalingam" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, January 22, 2002 4:52 AM Subject: Can't start a cloned connection while in manual transaction mode.

SOLVED problem with properties file

2002-01-16 Thread Martin Fekete
this works ... http://www.mail-archive.com/struts-user@jakarta.apache.org/msg19545.html Martin Fekete - Original Message - From: "Martin Fekete" <[EMAIL PROTECTED]> To: "Struts Users List" <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 10:10 AM

problem with properties file

2002-01-16 Thread Martin Fekete
else works fine. are there some requirements for encoding of .properties file (i tried UTF-8, Cp1250 ...) or local characters are not supported ? any suggestions welcome Martin Fekete

Re: Problems with logic:present tag: always true

2001-12-10 Thread Martin Fekete
check for taglib directive .. <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> and also look into generated HTML source ... feky - Original Message - From: "Mike Bridge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 7:09 PM Subject: Problems wi

Re: JDBCRealms

2001-12-05 Thread Martin Fekete
see sources ... list of roles is retrieved only when authenticate(...) is called. then roles are stored in list ... so when roles are changed in DB you wont see change in your application. that's the way which FORM authorization work. When using BASIC authorization the list of roles is populated f

Re: Passing several parameters in a html link

2001-12-04 Thread Martin Fekete
this should work ... <% java.util.Map map = new java.util.HashMap(); map.put("param1", request.getParameter("param1")); pageContext.setAttribute("map", map, PageContext.PAGE_SCOPE); %> <% map.put("param2", row.getParam()); %> link feky - Original Message - From: "Frédéric H

Re: Need to embed some jsp in link tag

2001-11-29 Thread Martin Fekete
or - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 29, 2001 1:11 PM Subject: Help: Need to embed some jsp in link tag > Hello all, > > I am trying to do the following > > >target="main"><%= childFolder.getName() %> > > > It doesn'

Re: Pop-Up Window

2001-10-05 Thread Martin Fekete
try somethink like this ... window.open("" ... feky - Original Message - From: "Tricia Ong Cheah Yen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 05, 2001 8:43 AM Subject: RE: Pop-Up Window i do apologise for not stating clearly my problem. my pop-up window has

Re: Stust start up error

2001-08-02 Thread Martin Fekete
problem is that struts.jar in tomcat lib directory don't contain org.apache.struts.webapp.example.User. this class is only in struts.jar in struts-example directory. feky - Original Message - From: "keith wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 03, 2001 7:2

Re: Stust start up error

2001-08-02 Thread Martin Fekete
problem is that struts.jar in tomcat lib directory don't contain org.apache.struts.webapp.example.User. this class is only in struts.jar in struts-example directory. feky - Original Message - From: "keith wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 03, 2001 7:2