
dd - 2009-08-10 19:54:51 -
In reply to message 1 from Joey Berry
Joey,
If I remember well, we already solved this problem, but for other people reading this, it may be useful to know that if they experience a situation where everything works fine in browsers such as FF, Opera, chrome etc. but not in IE, then it might be that the 'columns' variable in the drasticgrid call has an array that has a comma at the end of the last element.
We have seen this a number of times. So if you have:
columns: [
{name: 'Region', width: 200, editable:false},
{name: 'country', width: 50, editable:false},
{name: 'amount' , width:25, editable:false},
]
Then change it into:
columns: [
{name: 'Region', width: 200, editable:false},
{name: 'country', width: 50, editable:false},
{name: 'amount' , width:25, editable:false}
]
Note the 'amount' line has no comma at the end.
regards, Drasticdata