Xpage will not submit...banging head

Real basic Xpage with a couple of fields looking up values from different databases. Xpage will not submit when I use the following formula for one of the fields:

db = new Array(@DbName()[0], ‘Intranet\staff.nsf’);

@Explode(@DbLookup(db, “Keywords”, “Office”, “keylist”),“+&”);

The data shows in the Xpage properly but when using a submit type button nothing happens in the Notes Client or Firefox. (IE it works!)

Not receiving any errors either. New to Xpages is this a simple data array issue here?

Any feedback is appreciated.

Thanks,

Elijah Lapson

Subject: Hmmmm… head starting to bruise

Does not save (Submit) in Chrome either. The Xpage will save if already submitted (IE) and then edited. very curious.

Elijah

Subject: Have you tried firebug?

If the submit button stops working then it may be due to a javascript error on the page.

I normally use FireBug in Firefox to debug issues on the page, but you should see the errors on console as well.

Or does the submission get to the server and then does nothing?

Subject: That is what I find odd no errors…

Looked at Firebug and Admin console and there are no errors.

What I don’t understand is why this formula for a combo box is fine:

db = new Array(@DbName()[0], ‘Intranet\staff.nsf’);

@DbColumn(db, “Staff”, 1)

And this formula breaks the Xpage on submit.

db = new Array(@DbName()[0], ‘Intranet\staff.nsf’);

var lst1 = @DbLookup(db, “Keywords”, “Office”, “keylist”);

lst2 = @Explode(lst1,“+&”);

return lst2;

And why does it work in Internet Explorer but in no other browser? I would feel a little better if it worked in none of the browsers. :slight_smile: