Dear telerik,
We're trying to add RTL support to our application that uses the Q3/2009 RadSplitter control, but we're getting an error in the javascript embedded resource file as follows:
I added the above comments for clarity. Note that the error seems to be in the line var b=m[s] but m is null because it was assigned above as m=this._splitBars instead of _splitbars.
Can you please suggest a solution?
Salah A. Malaeb
TeknoBuild
We're trying to add RTL support to our application that uses the Q3/2009 RadSplitter control, but we're getting an error in the javascript embedded resource file as follows:
| a.RadSplitter._preInitialize=function(b){a.RadSplitterController.getInstance()._addSplitter(b); |
| … |
| }},_ensureItemsOrder:function(g,t){this._fixItemsIndeces(g); |
| if(t){var o=this._splitters[g]; |
| var l=this._panes; |
| var q=o.panes; |
| var e=q?q.length:0; |
| var r=o.splitbars; |
| var p=r?r.length:0; |
| var c=e+p; |
| var f=[]; |
| for(var h=e-1; |
| h>=0; |
| h--){var d=q[h]; |
| f[f.length]=d; |
| var n=l[d]; |
| n.indexInPanes=e-1-n.indexInPanes; |
| n.index=(c-1-n.index); |
| n.isLastPane=false; |
| var j=n.prevSplitBarId; |
| n.prevSplitBarId=n.nextSplitBarId; |
| n.nextSplitBarId=j; |
| }o.panes=f; |
| var m=this._splitBars; //_splitBars is null, but _splitbars in not null |
| var k=[]; |
| for(var h=p-1; |
| h>=0; |
| h--){var s=r[h]; |
| k[k.length]=s; |
| var b=m[s]; //since m is null, m[s] is a problem |
| … |
Can you please suggest a solution?
Salah A. Malaeb
TeknoBuild