Hi,
I created a new menu link completly and get the same result. Turning on debug info produces nothing. (Still white page) I can see the debug info on other pages but not roster.
All i get is
hope code tags work!
[code]
window.addEvent(‘domready’,function(){
if ($(‘roster_table’)) {
if ((MooTools.version >= ‘1.2.4’) && (typeof(HtmlTable)!=’undefined’)) {
var rosterTable = new HtmlTable(
$(‘roster_table’),
{
properties: {
border: 0,
cellspacing: 1,
cellpadding: 5
},
sortable :true,
zebra: true,
selectable: true,
allowMultiSelect: false,
paginate:true,
paginateRows:25,
paginationControlPages:25,
filterable:true,
strings:{
next:’Next’,
previous:’Prev’,
rows:’Rows’
},
classHeaderPaginationContorlTH:”,
classHeaderPaginationContorlTR:”,
classHeaderPaginationContorlDiv:’rp_header’,
classHeaderPaginationContorlUL:’rp_left’,
classHeaderPaginationContorlLI:’rp_control’,
classHeaderNumOfRowsContorlUL:’rp_right’,
classHeaderNumOfRowsContorlLI:’rp_control’,
classHeaderFilterContorlDiv:’rp_filter’
}
).updatePagination();
}
}
});
[/code]
This used to work no problem before the latest update.