- Tablesort CSS umbenannt

- korrektes sortierten von Umlauten mit Tablesorter
This commit is contained in:
Andreas Österreicher
2010-10-29 08:10:06 +00:00
parent 955619eee0
commit d9a464b540
4 changed files with 11 additions and 6 deletions
@@ -36,7 +36,7 @@ echo '
<title>Termin&uuml;bersicht</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../../../skin/vilesci.css" rel="stylesheet" type="text/css">
<link href="../../../skin/style.css" rel="stylesheet" type="text/css"/>
<link href="../../../skin/tablesort.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../../include/js/jquery.js"></script>
<script type="text/javascript" src="../../../include/js/jquery.metadata.js"></script>
@@ -48,7 +48,6 @@ echo '
$("#myTable").tablesorter(
{
sortList: [[0,0]],
widthFixed: false,
widgets: [\'zebra\']
});
}
+6
View File
@@ -237,6 +237,12 @@
t = $(node).text();
}
}
t=t.replace('ö','o');
t=t.replace('Ö','O');
t=t.replace('ü','u');
t=t.replace('Ü','U');
t=t.replace('ä','a');
t=t.replace('Ä','A');
return t;
}
+2 -1
View File
@@ -16,7 +16,8 @@ table.tablesorter thead tr th, table.tablesorter tfoot tr th {
table.tablesorter thead tr .header {
background-image: url(images/bg_sort.gif);
background-repeat: no-repeat;
background-position: center right;
background-position: center left;
padding-left: 20px;
cursor: pointer;
}
table.tablesorter tbody td {
+2 -3
View File
@@ -31,7 +31,7 @@ require_once('../include/benutzerberechtigung.class.php');
<html>
<head>
<title>WaWi Konten</title>
<link rel="stylesheet" href="../skin/style.css" type="text/css"/>
<link rel="stylesheet" href="../skin/tablesort.css" type="text/css"/>
<link rel="stylesheet" href="../skin/wawi.css" type="text/css"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
@@ -45,7 +45,6 @@ require_once('../include/benutzerberechtigung.class.php');
$("#myTable").tablesorter(
{
sortList: [[1,0]],
widthFixed: true,
widgets: ['zebra']
});
}
@@ -53,7 +52,7 @@ require_once('../include/benutzerberechtigung.class.php');
function conf_del()
{
return confirm('Diese Gruppe wirklich löschen?');
return confirm('Dieses Konto wirklich löschen?');
}
</script>