Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
eole-wol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
primtux-eole
Grenoble
eole-wol
Commits
96be4f1b
Verified
Commit
96be4f1b
authored
5 years ago
by
David Beniamine
Browse files
Options
Downloads
Patches
Plain Diff
Use DataTable instead of stupidTable
parent
d8fce8a2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
wol/www/index.php
+31
-3
31 additions, 3 deletions
wol/www/index.php
wol/www/stupidtable.min.js
+0
-7
0 additions, 7 deletions
wol/www/stupidtable.min.js
with
31 additions
and
10 deletions
wol/www/index.php
+
31
−
3
View file @
96be4f1b
...
...
@@ -19,8 +19,10 @@
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<script
src=
"jquery-3.3.1.min.js"
></script>
<script
src=
"stupidtable.min.js"
></script>
<link
rel=
"stylesheet"
href=
"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity=
"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin=
"anonymous"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"https://cdn.datatables.net/1.10.19/css/jquery.dataTables.css"
>
<script
type=
"text/javascript"
charset=
"utf8"
src=
"https://cdn.datatables.net/1.10.19/js/jquery.dataTables.js"
></script>
</head>
...
...
@@ -150,8 +152,34 @@ if(!isset($action)){
$
(
'
td
'
).
attr
(
'
title
'
,
function
(
index
,
attr
)
{
return
titles
[
$
(
this
).
index
()];
});
// Make table sortable
$
(
"
table
"
).
stupidtable
();
// Make table sortable and searchable
$
(
'
table
'
).
DataTable
({
pageLength
:
5
,
language
:{
"
decimal
"
:
""
,
"
emptyTable
"
:
"
pas de données dans cette table
"
,
"
info
"
:
"
Affichage des entrées _START_ à _END_ sur _TOTAL_
"
,
"
infoEmpty
"
:
"
0 à 0 de 0 entrées affichées
"
,
"
infoFiltered
"
:
"
(filtré sur _MAX_ entrées)
"
,
"
infoPostFix
"
:
""
,
"
thousands
"
:
"
,
"
,
"
lengthMenu
"
:
"
Montrer _MENU_ entrées
"
,
"
loadingRecords
"
:
"
Chargement...
"
,
"
processing
"
:
"
Traitement encours...
"
,
"
search
"
:
"
Rechercher :
"
,
"
zeroRecords
"
:
"
Pas d'entrées
"
,
"
paginate
"
:
{
"
first
"
:
"
Premier
"
,
"
last
"
:
"
Dernier
"
,
"
next
"
:
"
Suivant
"
,
"
previous
"
:
"
Précédent
"
},
"
aria
"
:
{
"
sortAscending
"
:
"
: Trier la colonne par ordre croissant
"
,
"
sortDescending
"
:
"
: Trier la colonne par ordre décroissant
"
}
},
});
});
</script>
</div>
...
...
This diff is collapsed.
Click to expand it.
wol/www/stupidtable.min.js
deleted
100644 → 0
+
0
−
7
View file @
d8fce8a2
(
function
(
c
){
c
.
fn
.
stupidtable
=
function
(
a
){
return
this
.
each
(
function
(){
var
b
=
c
(
this
);
a
=
a
||
{};
a
=
c
.
extend
({},
c
.
fn
.
stupidtable
.
default_sort_fns
,
a
);
b
.
data
(
"
sortFns
"
,
a
);
b
.
stupidtable_build
();
b
.
on
(
"
click.stupidtable
"
,
"
thead th
"
,
function
(){
c
(
this
).
stupidsort
()});
b
.
find
(
"
th[data-sort-onload=yes]
"
).
eq
(
0
).
stupidsort
()})};
c
.
fn
.
stupidtable
.
default_settings
=
{
should_redraw
:
function
(
a
){
return
!
0
},
will_manually_build_table
:
!
1
};
c
.
fn
.
stupidtable
.
dir
=
{
ASC
:
"
asc
"
,
DESC
:
"
desc
"
};
c
.
fn
.
stupidtable
.
default_sort_fns
=
{
"
int
"
:
function
(
a
,
b
){
return
parseInt
(
a
,
10
)
-
parseInt
(
b
,
10
)},
"
float
"
:
function
(
a
,
b
){
return
parseFloat
(
a
)
-
parseFloat
(
b
)},
string
:
function
(
a
,
b
){
return
a
.
toString
().
localeCompare
(
b
.
toString
())},
"
string-ins
"
:
function
(
a
,
b
){
a
=
a
.
toString
().
toLocaleLowerCase
();
b
=
b
.
toString
().
toLocaleLowerCase
();
return
a
.
localeCompare
(
b
)}};
c
.
fn
.
stupidtable_settings
=
function
(
a
){
return
this
.
each
(
function
(){
var
b
=
c
(
this
),
f
=
c
.
extend
({},
c
.
fn
.
stupidtable
.
default_settings
,
a
);
b
.
stupidtable
.
settings
=
f
})};
c
.
fn
.
stupidsort
=
function
(
a
){
var
b
=
c
(
this
),
f
=
b
.
data
(
"
sort
"
)
||
null
;
if
(
null
!==
f
){
var
d
=
b
.
closest
(
"
table
"
),
e
=
{
$th
:
b
,
$table
:
d
,
datatype
:
f
};
d
.
stupidtable
.
settings
||
(
d
.
stupidtable
.
settings
=
c
.
extend
({},
c
.
fn
.
stupidtable
.
default_settings
));
e
.
compare_fn
=
d
.
data
(
"
sortFns
"
)[
f
];
e
.
th_index
=
h
(
e
);
e
.
sort_dir
=
k
(
a
,
e
);
b
.
data
(
"
sort-dir
"
,
e
.
sort_dir
);
d
.
trigger
(
"
beforetablesort
"
,{
column
:
e
.
th_index
,
direction
:
e
.
sort_dir
,
$th
:
b
});
d
.
css
(
"
display
"
);
setTimeout
(
function
(){
d
.
stupidtable
.
settings
.
will_manually_build_table
||
d
.
stupidtable_build
();
var
a
=
l
(
e
),
a
=
m
(
a
,
e
);
if
(
d
.
stupidtable
.
settings
.
should_redraw
(
e
)){
d
.
children
(
"
tbody
"
).
append
(
a
);
var
a
=
e
.
$table
,
c
=
e
.
$th
,
f
=
c
.
data
(
"
sort-dir
"
);
a
.
find
(
"
th
"
).
data
(
"
sort-dir
"
,
null
).
removeClass
(
"
sorting-desc sorting-asc
"
);
c
.
data
(
"
sort-dir
"
,
f
).
addClass
(
"
sorting-
"
+
f
);
d
.
trigger
(
"
aftertablesort
"
,{
column
:
e
.
th_index
,
direction
:
e
.
sort_dir
,
$th
:
b
});
d
.
css
(
"
display
"
)}},
10
);
return
b
}};
c
.
fn
.
updateSortVal
=
function
(
a
){
var
b
=
c
(
this
);
b
.
is
(
"
[data-sort-value]
"
)
&&
b
.
attr
(
"
data-sort-value
"
,
a
);
b
.
data
(
"
sort-value
"
,
a
);
return
b
};
c
.
fn
.
stupidtable_build
=
function
(){
return
this
.
each
(
function
(){
var
a
=
c
(
this
),
b
=
[];
a
.
children
(
"
tbody
"
).
children
(
"
tr
"
).
each
(
function
(
a
,
d
){
var
e
=
{
$tr
:
c
(
d
),
columns
:[],
index
:
a
};
c
(
d
).
children
(
"
td
"
).
each
(
function
(
a
,
b
){
var
d
=
c
(
b
).
data
(
"
sort-value
"
);
"
undefined
"
===
typeof
d
&&
(
d
=
c
(
b
).
text
(),
c
(
b
).
data
(
"
sort-value
"
,
d
));
e
.
columns
.
push
(
d
)});
b
.
push
(
e
)});
a
.
data
(
"
stupidsort_internaltable
"
,
b
)})};
var
l
=
function
(
a
){
var
b
=
a
.
$table
.
data
(
"
stupidsort_internaltable
"
),
f
=
a
.
th_index
,
d
=
a
.
$th
.
data
(
"
sort-multicolumn
"
),
d
=
d
?
d
.
split
(
"
,
"
):[],
e
=
c
.
map
(
d
,
function
(
b
,
d
){
var
c
=
a
.
$table
.
find
(
"
th
"
),
e
=
parseInt
(
b
,
10
),
f
;
e
||
0
===
e
?
f
=
c
.
eq
(
e
):(
f
=
c
.
siblings
(
"
#
"
+
b
),
e
=
c
.
index
(
f
));
return
{
index
:
e
,
$e
:
f
}});
b
.
sort
(
function
(
b
,
c
){
for
(
var
d
=
e
.
slice
(
0
),
g
=
a
.
compare_fn
(
b
.
columns
[
f
],
c
.
columns
[
f
]);
0
===
g
&&
d
.
length
;){
var
g
=
d
[
0
],
h
=
g
.
$e
.
data
(
"
sort
"
),
g
=
(
0
,
a
.
$table
.
data
(
"
sortFns
"
)[
h
])(
b
.
columns
[
g
.
index
],
c
.
columns
[
g
.
index
]);
d
.
shift
()}
return
0
===
g
?
b
.
index
-
c
.
index
:
g
});
a
.
sort_dir
!=
c
.
fn
.
stupidtable
.
dir
.
ASC
&&
b
.
reverse
();
return
b
},
m
=
function
(
a
,
b
){
var
f
=
c
.
map
(
a
,
function
(
a
,
c
){
return
[[
a
.
columns
[
b
.
th_index
],
a
.
$tr
,
c
]]});
b
.
column
=
f
;
return
c
.
map
(
a
,
function
(
a
){
return
a
.
$tr
})},
k
=
function
(
a
,
b
){
var
f
,
d
=
b
.
$th
,
e
=
c
.
fn
.
stupidtable
.
dir
;
a
?
f
=
a
:(
f
=
a
||
d
.
data
(
"
sort-default
"
)
||
e
.
ASC
,
d
.
data
(
"
sort-dir
"
)
&&
(
f
=
d
.
data
(
"
sort-dir
"
)
===
e
.
ASC
?
e
.
DESC
:
e
.
ASC
));
return
f
},
h
=
function
(
a
){
var
b
=
0
,
f
=
a
.
$th
.
index
();
a
.
$th
.
parents
(
"
tr
"
).
find
(
"
th
"
).
slice
(
0
,
f
).
each
(
function
(){
var
a
=
c
(
this
).
attr
(
"
colspan
"
)
||
1
;
b
+=
parseInt
(
a
,
10
)});
return
b
}})(
jQuery
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment