Hi,
On IE9, the following code will fail:
if ($m.Columns == null || $m.Columns.length == 0) {
c.colSpan = $0P;
$R.style.width = $1l + "px";
} else {
...
Because if $0P == 0, then an execption is raised.
You should do the following stuff:
if ($m.Columns == null || $m.Columns.length == 0) {
if($0P > 0){
c.colSpan = $0P;
}
$R.style.width = $1l + "px";
} else {
Cheers