- Fixed bug #250: sorting truncated tables.

- Tables can now be sorted on the first column too (object name).

SVN:trunk[791]
This commit is contained in:
Denis Flaven
2010-09-07 15:43:26 +00:00
parent 88643dab96
commit 142a64dfc9
4 changed files with 9 additions and 12 deletions

View File

@@ -179,7 +179,7 @@ class UILinksWizard
function(data)
{
$('#SearchResultsToAdd').html(data);
$('#SearchResultsToAdd .listResults').tablesorter( { headers: { 0:{sorter: false }}, widgets: ['zebra']} ); // sortable and zebra tables
$('#SearchResultsToAdd .listResults').tablesorter( { widgets: ['myZebra', 'truncatedList']} ); // sortable and zebra tables
},
'html'
@@ -233,7 +233,7 @@ class UILinksWizard
}
$('.listResults tbody').append(data);
$('.listResults').trigger('update');
$('.listResults').tablesorter( { headers: { 0:{sorter: false }}, widgets: ['zebra']} ); // sortable and zebra tables
$('.listResults').tablesorter( { widgets: ['myZebra', 'truncatedList']} ); // sortable and zebra tables
},
'html'
);