Grid.Controllers.Navigation calling concat() with no parameters?
In AW.Grid.Controllers.Navigation (this is in version 2.0.1), what does the call to concat() with no parameters do?
From what I know of the concat function, you have to pass in a second array to concatenate to the first, so if you're passing in null, what does that do? The reason I ask is because I'm getting a "Unexpected call to method or property access" error because of it in certain random scenarios, and the only way I can fix it is by throwing it in a try/catch block like:
Any ideas?
AW.Grid.Controllers.Navigation=(
function()
{
var c1=[],r1=[];
function sync1()
{
c1=this.getSelectedColumns().concat();
...
From what I know of the concat function, you have to pass in a second array to concatenate to the first, so if you're passing in null, what does that do? The reason I ask is because I'm getting a "Unexpected call to method or property access" error because of it in certain random scenarios, and the only way I can fix it is by throwing it in a try/catch block like:
try
{
c1=this.getSelectedColumns().concat();
}
catch(e)
{
c1=c1.concat(getSelectedColumns());
}
Any ideas?
Steve
March 10,