First let me say that I’m new to developing Notes apps for the browser, but I’m very experienced with developing for the client. I’m trying to convert one of my apps to work from a browser. I have several keyword lists on my form and I found some great documentation regarding using iframes to get the keyword list to populate without the page jumping. I’m having a problem that I’m sure is simple to fix but I can’t figure it out.
Here’s a link to the method I’m using. I’ve also seen various posts on this forum using the same method:
Here’s the first few lines of my javascript:
var LOBArray = new Array(""); I get an error right at that var line. It's telling me there is an unterminated string constant. I believe the problem is because I am returning a long list of keywords and the first line is wrapping. If I just display it in the Notes client as text, and not HTML/javascript I get: var LOBArray = new Array(" keyword1","keyword2, etc But the keywords start on the next line instead of right up against the new Array(" I tried setting the text alignment to none and it still doesn't work. What do I need to do to get the keyword list next to my new Array(" so the javascript knows it's continued on the next line? Any help is appreciated. Thanks!