Hmm, gotta admit you lost me Jeff... is nodeValue a property of an anchor tag? I don't see it in my references...
-- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Wed, December 22, 2004 3:16 pm, Jeff Beal said: > How about: > > <a onClick="openFolder(this.nodeValue)"><bean:write name="listItem" > property="path" /></a> > > This gets around the problem of <bean:write/> not escaping the > back-slash altogether. > > -- Jeff > > [EMAIL PROTECTED] wrote: >> Hello all... I have a situation where I have to insert a path into a >> Javascript call, like so: >> >> <table> >> <logic:iterate id="listItem" name="sidebarFolderViewActionForm" >> property="itemsList" type="java.io.File"> >> <tr> >> <td> >> <a onClick="openFolder("<bean:write name="listItem" >> property="path" />");"> >> <bean:write name="listItem" property="path" /> >> </a> >> <br> >> </td> >> </tr> >> </logic:iterate> >> </table> >> >> Problem is, on Windows anyway, the path includes a backslash, so when >> rendered you get for example: >> >> <table> >> <tr> >> <td> >> <a onClick="openFolder("A:\");"> >> A:\ >> </a> >> <br> >> </td> >> </tr> >> </table> >> >> ...which of course is a script error because the backslash is escaping >> the quotation mark. >> >> So, how does one deal with this? As I understant, filter="true" is the >> default setting for bean:write... I tried setting it explicitly, to no >> avail. >> >> Thanks! >> >> Frank W. Zammetti >> Chief Software Architect >> Omnytex Technologies >> http://www.omnytex.com >> >> >> ------------------------------------------------------------------------ >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]