Re: Simple Question

2003-11-19 Thread khote
If I'm remembering correctly: a tile=mouse over text link/a and img src=blah.jpg alt=mouse over text/ - Original Message - From: Malcolm Davis [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 9:14 PM Subject: RE: Simple Question

Re: [OT] [ANNOUNCE] JUnit in Action now available

2003-11-10 Thread khote
http://www.manning.com/ebook_buy.html?project=massol Manning has lots of good books, I always pay the $20.00 and download the pdf. - Original Message - From: Brice Ruth [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 10, 2003 5:59 AM Subject:

Re: tiles and margins

2003-10-31 Thread khote
use a stylesheet. You can declare it in your tiles definition and discover it in your jsp You can have style tags in the head, or use a linked stylesheet -- you can declare that in a definition, if you use a controller you can dynamically set it. set: body { padding: 0px; margin: 0px; } use

Re: HAPPY DIWALI!

2003-10-23 Thread khote
can you guys email this crap to each other personally, keep it off the struts-users list, huh? nobody will totter if you do so. - Original Message - From: Dhaliwal, Pritpal (HQP) [EMAIL PROTECTED] To: 'imran ali' [EMAIL PROTECTED]; Struts Users Mailing List [EMAIL PROTECTED] Cc: Navjot

META-INF vs WEB-INF

2003-10-11 Thread khote
I notice in the struts.jar that the tld's are kept in META-INF/tlds, rather than any WEB-INF I'm using an include file in my JSPs that contains the %@ taglib prefix=html uri=/WEB-INF/tld/struts-html.tld % Since I'm not using too many, I just include thist tagdecl.jspf in all my JSPs I'm using

Re: JBoss

2003-10-09 Thread khote
A version of JBoss comes with Tomcat installed http://prdownloads.sourceforge.net/jboss/jboss-3.2.1_tomcat-4.1.24.zip?download It generally works the same, but there are some things you just can't do the old way. It's JBoss that deploys your applications now, not Tomcat. - Original Message

Re: [Question] : Close popup after Action has exited...

2003-10-01 Thread khote
in your form onSubmit=self.close(); or document.window.close() or try variations on that. Sometimes the browser will complain about, I'm not sure which one gets you past that. - Original Message - From: Todor Sergueev Petkov [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

Re: Struts-config path

2003-09-29 Thread khote
In the worst case you can have your ActionForward refer to a jsp: logic:redirect href=http://www.someotherplace.com/ or an actual Action that issues the redirect in the response object. - Original Message - From: Chen, Gin [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL

Re: Tiles and ControllerClass

2003-09-25 Thread khote
You can also just implement the Controller: package gr.tera.portal.actions.poll; public class GetPollAction implements org.apache.struts.tiles.Controller { } the tiles processor currently calls the perform method, but the docs say that this will be deprecated in 1.2 I found this

Re: Page Title

2003-09-22 Thread khote
definition extends=default.layout name=browse.costcenters controllerclass=org.apache.struts.tiles.ActionController put name=title value=BIS-Web Browse Cost Centers/ put name=body-content value=/custom/browse-costcenters.jsp/ /definition Look up ActionController in the

Re: looping with ant:available

2003-09-19 Thread khote
hey! that's a maven question. You are setting a variable to flag whether or not that jar is in the dependencies ...? you may have to add the type=file ... sometimes you have to use your reverse boolean logic to get the !ORS to work as !(this AND that) I found sometimes for those available tests

Re: searching on client side.

2003-09-17 Thread khote
agree. I tried to do something like that a couple of years ago, when there were still some poor suckers out there with netscrape 4.7x multiple different scripts, browser detection, if ns4 or if ie5 or whatever ... too bad they all couldn't agree with w3c on how stylesheets should work. another

Re: where I put my property files?

2003-09-15 Thread khote
WEB-INF/classes ... WEB-INF/classes/resources say you have application.properties, configuration.properites in your web.xml servlet servlet-classorg.apache.struts.action.ActionServlet/servlet-class init-param param-nameapplication/param-name

Re: Force initialization of RequestProcessor?

2003-09-09 Thread khote
Have you tried a plug-in, in your struts-config.xml? I've had some success with that method, the plugin does get called early on. - Original Message - From: Wes Kubo [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 9:33 AM Subject: Force