- Add Jqueryui theme
- Change values in edit page
- Add filter on list page
This commit is contained in:
mespeche
2013-09-03 10:45:06 +02:00
parent 71d557020f
commit 42175ca4eb
20 changed files with 1264 additions and 37 deletions

View File

@@ -15,18 +15,25 @@
widgetOptions : {
filter_cssFilter : 'input-medium',
filter_formatter : {
2 : function($cell, indx){
return $.tablesorter.filterFormatter.uiDateCompare( $cell, indx, {
dateFormat: "dd/mm/yy",
changeMonth : true,
changeYear : true,
compare : '='
});
},
3 : function($cell, indx){
return $.tablesorter.filterFormatter.uiSlider( $cell, indx, {
animate : true,
return $.tablesorter.filterFormatter.uiRange( $cell, indx, {
value: 1,
min: 1,
max: 50,
delayed: true,
valueToHeader: true,
exactMatch: false,
allText: 'all',
compare: '>='
});
valueToHeader: false,
exactMatch: false
});
}
}
}