Привет,
Я пытаюсь запустить скрипт SQL, загруженный с помощью Application Express (APEX), веб-интерфейса для СУБД Oracle.
Однако после нажатия кнопки «Выполнить» ничего не происходит, заподозрив любую ошибку javascript, я вытащил firebug, и на js, похоже, произошла ошибка.
this.endLine.isPreceding is not a function
http://localhost:8080/i/editor/codearea.xbl.xml
Line 2864
То, что сообщил firebug.
Есть идеи по этому поводу?
Спасибо заранее.
-aw
РЕДАКТИРОВАТЬ: JS часть
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;
};