Salutations,
I have been attempting to execute an SQL Script through Application Express (APEX), the browser-based interface for Oracle DBMS.
However, when I click on the Run button, nothing happens. Suspecting a potential Javascript error, I decided to inspect it using Firebug, which revealed an issue in the javascript code:
this.endLine.isPreceding is not a function
http://localhost:8080/i/editor/codearea.xbl.xml
Line 2864
This was the message displayed by Firebug.
Any insights or suggestions on how to resolve this?
Thank you in advance.
-aw
UPDATE: snippet of the problematic js section
CodeRange.prototype.setStartBeforeEnd = function()
{
if (this.endLine.isPreceding(this.startLine) ||
(this.endLine == this.startLine && this.endCol < this.startCol))
{
var l = this.endLine;
this.endLine = this.startLine;
this.startLine = l;
var c = this.endCol;
this.endCol = this.startCol;
this.startCol = c;
}
return this;
};