summaryrefslogtreecommitdiff
path: root/testapp/exam/static
diff options
context:
space:
mode:
authorankitjavalkar2015-07-23 16:32:13 +0530
committerankitjavalkar2015-08-05 12:00:54 +0530
commitdbab99bc13b8483c24706e47a9a0926508e3c332 (patch)
tree27fc89e79ce8ce8332fc7288993f6c7ff2537bb3 /testapp/exam/static
parent214d8696fafee4e38c6bf039315aac37e4cd2e2b (diff)
downloadonline_test-dbab99bc13b8483c24706e47a9a0926508e3c332.tar.gz
online_test-dbab99bc13b8483c24706e47a9a0926508e3c332.tar.bz2
online_test-dbab99bc13b8483c24706e47a9a0926508e3c332.zip
Add filters: Minor fixes
Diffstat (limited to 'testapp/exam/static')
-rw-r--r--testapp/exam/static/exam/js/question_filter.js42
1 files changed, 10 insertions, 32 deletions
diff --git a/testapp/exam/static/exam/js/question_filter.js b/testapp/exam/static/exam/js/question_filter.js
index 7dc92a6..065b06b 100644
--- a/testapp/exam/static/exam/js/question_filter.js
+++ b/testapp/exam/static/exam/js/question_filter.js
@@ -3,7 +3,7 @@ $(document).ready(function(){
$marks = $("#id_marks");
$language = $("#id_language");
- $question_type.change(function() {
+ function question_filter() {
$.ajax({
url: "/exam/ajax/questions/filter/",
type: "POST",
@@ -18,51 +18,29 @@ $(document).ready(function(){
$("#filtered-questions").html(questions);
}
});
+ }
+
+ $question_type.change(function() {
+ question_filter()
});
$language.change(function() {
- $.ajax({
- url: "/exam/ajax/questions/filter/",
- type: "POST",
- data: {
- question_type: $question_type.val(),
- marks: $marks.val(),
- language: $language.val()
- },
- dataType: "html",
- success: function(output) {
- var questions = $(output).filter("#questions").html();
- $("#filtered-questions").html(questions);
- }
- });
+ question_filter()
});
$marks.change(function() {
- $.ajax({
- url: "/exam/ajax/questions/filter/",
- type: "POST",
- data: {
- question_type: $question_type.val(),
- marks: $marks.val(),
- language: $language.val()
- },
- dataType: "html",
- success: function(output) {
- var questions = $(output).filter("#questions").html();
- $("#filtered-questions").html(questions);
- }
- });
+ question_filter()
});
$("#checkall").live("click", function(){
if($(this).attr("checked")) {
$("#filtered-questions input:checkbox").each(function(index, element) {
- $(this).attr('checked','checked');
+ $(this).attr('checked', true);
});
}
else {
- $("#filtered_questions input:checkbox").each(function(index, element) {
- $(this).removeAttr('checked');
+ $("#filtered-questions input:checkbox").each(function(index, element) {
+ $(this).attr('checked', false);
});
}
});