[solved thanks all] Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
First off thanks everyone for being so patient. Somehow I had to have been an idiot somwhere along the way in creating the Tag file even though I swear I copied and pasted the code from Kris' initial e-mail exactly like he had it. Plus I thought I triple checked for any trailing line break. I s

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Kris Schneider wrote the following on 10/21/2004 7:39 PM: Output (no line breaks): *N/A Now that drives me mad:) If you get a chance, just so I can tell if ends up being some server or OS situation. If you could send me that JSP and the tag file so I can plop them 'as is' into my app- that would

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Rahul P Akolkar wrote the following on 10/21/2004 7:10 PM: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%>')"><%-- --%> where test.jsp is another trivial JSP as follows: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%>A, <%-- --%>B, <%-- --%>C I

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Kris Schneider
Not sure what to say at this point 'cause it worked for me with: <%@ page contentType="text/plain" %> <%@ taglib prefix="c"uri="http://java.sun.com/jsp/jstl/core"; %> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> <% additionalServices.add(fooService); additionalServices.add(barService

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rahul P Akolkar
This thread has gotten too long to ignore :-) "trimSpaces" probably won't do it for you. As my bit, I tried this trivial JSP: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%>')"><%-- --%> where test.jsp is another trivial JSP as follows: <%@ taglib prefix="c" uri="htt

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Jason Lea wrote the following on 10/21/2004 6:31 PM: So you don't have a blank line after the ? positive. I triple checked that:) Perhaps you could try assigning the result to a var eg items="${associate.additionalServices}" property="code" postDelim=" ,"/>');" onmouseout="return nd();">* Then u

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Jason Lea
So you don't have a blank line after the ? eg you have [start of file]<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; ... && ( includeLast || !status.last )}'>${postDelim}[end of file] or do you have [start of file]<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; ... &&

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
It still causes the same problem. The problem is in the break 'after' the whole tag is used. The break on the JSP that calls this tag. To be sure, I used your exact code below and I still get the same break that is visible when you view source. To be specific: When the tag is called in the foll

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Kris Schneider
Hopefully the formatting's okay: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%><%@ attribute name="items" required="true" type="java.util.Collection" %><%-- --%><%@ attribute name="preDelim" %><%-- --%><%@ attribute name=

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Kris Schneider wrote the following on 10/21/2004 4:16 PM: Right, got it. The problem is in the DelimItems.tag file. I'm still confused:) Here's the DelimItems tag file: (had this all one line but broker out the imports as shown) <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%@ a

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Kris Schneider
Right, got it. The problem is in the DelimItems.tag file. Here's something that might trip you up. This tag file ("EOF" is just the end-of-file marker so it's explicit in the example, it's not really in the tag file): <%@ tag body-content="scriptless" %><%-- --%><%@ taglib prefix="c" uri="http://j

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Kris Schneider wrote the following on 10/21/2004 2:59 PM: Nope (I tried it - it looks like your choice A), but your example really isn't any different than mine ;-). The ' is after the tag and it's still on the same line as the tag's output. Care to (re)post the tag file that's giving you the probl

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Kris Schneider
Nope (I tried it - it looks like your choice A), but your example really isn't any different than mine ;-). The ' is after the tag and it's still on the same line as the tag's output. Care to (re)post the tag file that's giving you the problem? Quoting Rick Reumann <[EMAIL PROTECTED]>: > Kris Sch

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Rick Reumann
Kris Schneider wrote the following on 10/21/2004 7:33 AM: Here'a a bogus example: dummy.jsp: -- <%@ page contentType="text/plain" %> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> Tag output: '' dummy.tag: -- <%@ tag body-content="scriptless" %><%-- --%><%@ taglib prefix="c" uri

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-21 Thread Kris Schneider
Rick, Here'a a bogus example: dummy.jsp: -- <%@ page contentType="text/plain" %> <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> Tag output: '' dummy.tag: -- <%@ tag body-content="scriptless" %><%-- --%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%>

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread Rick Reumann
Kris Schneider wrote the following on 10/21/2004 12:36 AM: You're sure there's not a newline at the very end of your tag file? I've even done a reg expression search and replace for \n and nothing found. It's just one line. I'm calling it from javascript like: ');" onmouseout="return nd();">* I

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread Kris Schneider
You're sure there's not a newline at the very end of your tag file? Rick Reumann wrote: Kris Schneider wrote the following on 10/20/2004 3:51 PM: Are you still pursuing this? If so, I use the following comment hack: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%><%@ attri

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread Hassan Schroeder
Rick Reumann wrote: Thanks, yes still looking:( The problem is I'm still left with just one closing break at the end. I had previously tried converting the whole tag file to one line and still I'll get one break when it's evaluated in the JSP. Sorry, I don't recall the start of this thread, but

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread David Schwartz
You may be able to work around it via javascript? Try outputting the value to a hidden text field than displaying the value property. This will not cause a javascript error & elliminates line breaks. Quoting Rick Reumann <[EMAIL PROTECTED]>: >> Kris Schneider wrote the following on 10/20/2004 3:

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread Rick Reumann
Kris Schneider wrote the following on 10/20/2004 3:51 PM: Are you still pursuing this? If so, I use the following comment hack: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%><%@ attribute name="items" required="true" type="java.util.Collection"%><%-- --%>... I've also se

Re: How to avoid the line breaks when a tag file used within javascript?

2004-10-20 Thread Kris Schneider
Rick, Are you still pursuing this? If so, I use the following comment hack: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %><%-- --%><%@ attribute name="items" required="true" type="java.util.Collection"%><%-- --%>... I've also seen this in use: <%@ taglib prefix="c" uri="http:

How to avoid the line breaks when a tag file used within javascript?

2004-10-15 Thread Rick Reumann
I created a simple forEach type of delimeter tag that works well for me (code at end). The problem, though, is I need to use this tag within a javascript method to produce a string that'll be used in a dhtml popup. The problem is that, even if I make this tag file all on one line, I still end u