ご挨拶、
Oracle DBMS の Web ベースのインターフェイスである Application Express (APEX) を使用してアップロードされた SQL スクリプトを実行しようとしています。
ただし、[実行]ボタンをクリックしても、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;
};