Ajax Processing Events onChange Not Firing

I’ve been regression testing my system after the upgrade to ScriptCase 8 and found something very odd.

I have 3 select fields set up to perform an onChange event to the same select field so if any of the 3 change, the 4th select field is supposed to reload. It seems that the event fires (I can see the popup box display very quickly) but it’s not executing the query on the 4th select field. So it never refreshes based on the values of the other 3 select fields. I’ve detailed it below in case this description doesn’t make sense.
[table=“width: 500”]
[tr]
[td]FieldA[/td]
[td]Type select[/td]
[td]onChange update FieldD[/td]
[/tr]
[tr]
[td]FieldB[/td]
[td]Type select[/td]
[td]onChange update FieldD[/td]
[/tr]
[tr]
[td]FieldC[/td]
[td]Type select[/td]
[td]onChange update FieldD[/td]
[/tr]
[/table]

FieldD
Type select
Lookup Method automatic
Query contains values from FieldA or FieldB or FieldC

I know it worked prior to the upgrade. Any ideas on what I can do to debug this (i’ve tried that and I don’t see any SQL when FieldD reloads) or what else needs to be done to get this to work?

[SOLVED] Ajax Processing Events onChange Not Firing

Ended up that one of the fields was empty so the SQL statement had a syntax error. But what bothers me most is the SQL was displayed in debug mode when the event fired. Sounds like a bug when in debug mode.