You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
Hi,
I am sending the response back from my servlet to the client. in onSubmitComplete() method when i get event.getResults(), I am getting my string in <pre>my string </pre> format. How should i get only my string and no <pre> tags....?
-sri
Thad
unread,
Nov 21, 2012, 6:53:56 AM11/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
Try if (results.contains("...")) where "..." is whatever your key phrase is.
Thomas Broyer
unread,
Nov 21, 2012, 9:22:25 AM11/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
On Wednesday, November 21, 2012 9:44:46 AM UTC+1, sreenivas wrote:
Hi,
I am sending the response back from my servlet to the client. in onSubmitComplete() method when i get event.getResults(), I am getting my string in <pre>my string </pre> format. How should i get only my string and no <pre> tags....?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
Thomas,
I've found that some browser plugins will screw up the response regardless of what I do (I'm thinking in particular about an IE audio-film control plugin who's name escapes me). To work around it I had to bracket my answer with something like -FOO-/-FOO-. It was a real pain in the ass to run that one down.