Quantcast
Channel: Assignment
Viewing all 9670 articles
Browse latest View live

Re: Multiple Rubrics for one assignment

$
0
0
by AL Rachels.  

Hi Scott,

By any chance, have you tried using the Generico filter to create tab items in a description? It works every place I have tried it and you have the added benefit of being able to use all the other Generico templates throughout your site.


CSS for #next-activity-link

$
0
0
by Sathiraju Sunkara.  

Hi

on the assignment page (/mod/assign/view.php?id=)

i want change "#next-activity-link" to be redirected to course page and change the link name to "Go to Course Page".

Please suggest the CSS for that


Thank You


HTML code for creating button on assignment page

$
0
0
by Sathiraju Sunkara.  

Hi

Anyone please provide HTML code for creating button on assignment page and redirecting to coursepage

Grading group assignments

$
0
0
by Henrik sune Pedersen.  

Before in earlier versions, when grading group assignments, the teacher only got one assignment pr. group now all members of the group is in the grading view mixed in with members from other groups.

There seems to be missing a filter that filer users on groups, OR is there an option that we have overlooked.

"Back to course" button after assignment submission

$
0
0
by Sathiraju Sunkara.  

Hi

Quizzes seem to have a 'back to course' button once the user has completed a quiz.  Is there a way to get this same button appearing after an assignment is submitted?  A number of our students are confused when taking a test that has a combination of both "online text" assignments and quiz assignments because the quiz has this button and the assignment does not.


Thanks in advance

Re: Download submissions ordered by last name

$
0
0
by r fisher.  

I second this request. Students are listed in my gradebook last name, first name. Moodle's ordering is an extra annoyance.

Assignment - Feedback - PDF Annotation - Pen width

$
0
0
by F R.  

Hi,

I would like to change the Pen stroke width in the PDF Annotation feedback. I'm using 3.9. 

Things that I have tried but had no result:

Changed the value of STROKEWEIGHT = 1 from 4

in

mod/assign/feedback/editpdf/yui/src/editor/js/globals.js

mod/assign/feedback/editpdf/yui/build/moodle-assignfeedback_editpdf-editor/moodle-assignfeedback_editpdf-editor.js

mod/assign/feedback/editpdf/yui/build/moodle-assignfeedback_editpdf-editor/moodle-assignfeedback_editpdf-editor-debug.js

2. Purged JS cache

3. Restarted apache and PHP

I would appreciate if anyone can tell me how change the pen width. It really does need to be much thinner.

TIA

Error message "Exception - Class 'core\progress\none' not found"

$
0
0
by Patford Nkhoma.  

Am getting the error when add an assignment activity and click on save . (moodle 3.9)


Assignment - "Back to the course" button

$
0
0
by Dominique Bauer.  

Here's my answer to this post ↗.

Hello Sathiraju,

It seems to me that this is possible. You will also need to replace "quizattempt" with "submissionaction".

Here is the code for assignment only:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
    if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/assign/view.php") > -1) {
        $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.submissionaction"));
    };
})
function backtotheCourse() {
    var x = $("ol.breadcrumb li:eq(-2)  > a").attr("href");
    window.location.replace(x);
}
</script>

Here is the code for both quiz and assignment:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
    if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/quiz/view.php") > -1) {
        if ($(".continuebutton").length) {
            $(".continuebutton").css("display","none");
            $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div>").insertBefore($("div.quizattempt"));
        } else {
            $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.quizattempt"));
        }
    };
    if (window.location.href.indexOf("https://theURLofyourMoodleSite/mod/assign/view.php") > -1) {
        $("<div style='text-align:center;'><button class='btn btn-secondary' onclick='backtotheCourse()'>Back to the course</button></div><div style='text-align:center;position:relative;top:8px;'>OR</div>").insertBefore($("div.submissionaction"));
    };
})
function backtotheCourse() {
    var x = $("ol.breadcrumb li:eq(-2)  > a").attr("href");
    window.location.replace(x);
}
</script>

Assignment Reports

$
0
0
by Traz 666.  

Hi 

using version 3.5.

Is there any report that can be run to show outstanding assignments across all courses that have not yet been graded/awaiting grading?

Many Thanks

Data Heavy Assignments - How would you do this?

$
0
0
by Marie Waterhouse.  

I am running art assignments which are very file (data) heavy and require students to submit lots of images and possibly short video clips.

Are there any automatic compression  file plug ins? 

Does anyone else run similar assignments?

I am struggling with making it all come together in a coherent way. At the moment they have to store all their folders / data off site (ie Google Drive) Then come back into moodle and tell me it is ready for marking. Then I have to somehow feedback to them, comment on their assignment submissions which may or may not pass at that point then when the assignment is 'ready to pass' I have to manually grade it so that I have some decent overview of each students progress and then to top it all an external moderator needs 'simple access' (ie one link) which sums up the entire process, stages, evidence and grading dialogue.

Any wild ideas or inventive suggestions as to how best approach this would be very much appreciated.

Many thanks

Re: HTML code for creating button on assignment page

$
0
0
by Yelena Hopper.  

Well, the simple HTML code for creating a button with a link is below:

<form action="url">

<input type="submit" value="link_name" />
</form>
If there are CSS is allowed, then you can simply use the <a></a> tag to create the link

<a href="https://google.com" class="button">Go to Google</a>
css - 
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}

 In our education site Penmypaper as CSS is there, so we just use the "a" tag for creating links.

In Annotate PDF feedback plugins if student submit large resolution PDF get out of focus

$
0
0
by Acqua Alta.  

It's not an issue that would be resolved soon. It's a feature that is missing and would hopefully would be developed in the future:
MDL-47580 Cannot zoom in/out in Moodle assignment PDF editor view

Re: Data Heavy Assignments - How would you do this?

$
0
0
by AL Rachels.  

Hi Marie,

I don't know of any, "automatic compression file plugins," so cannot help with that.

As for the rest, have you considered using the journal plugin? It allows students to edit submissions multiple times and be graded multiple times with feedback. As for "simple access" it shows all entries to the teacher/manager/admin on one page. Since that could get to be a very long page, it can be limited by using groups. There is one downside and that is if you want to keep track of grade changes and feedback changes, the teacher will have to keep track of the grade changes in the feedback comments, while adding new feedback without deleting any of the old stuff.

Another possibility is that there is a new, Diary, plugin awaiting approval, that might be a little better for this use vs Journal. That's because instead of just the one entry, that would keep being modified, Diary starts a new entry each calendar day. Each individual entry can be separately graded, with the overall grade appearing in the grade book dependent on which rating set up you use, Average of ratings, Count of ratings, Maximum rating, Minimum rating, or Sum of ratings.

Note: I am the developer of Diary and you are interested in it, send me a private message for further details.

Re: Is it possible to download all user assignment attempts and feedback?

$
0
0
by maolana arifin.  

Hi Chris,

i have similiar problem, i'm using version 3.8. have you found the solution?

Turning off grades in Moodle Assignment

$
0
0
by Joost Elshoff.  

Hi Menno!

Guess that's a question that could easily be added in the Teaching with Moodle forum instead, but I'll answer it here.

You could use a Voldaan/Niet voldaan scale instead of a grade, if you wish, just to mark that a specific assignment fulfills requirements.

In the gradebook though, you need to have the grade visible for a student participant to be able to read the feedback.

Effect of Removing Submitted Assignments ?

$
0
0
by Muhammad Abdul Basit.  

I want to free some disk space by deleting submitted assignments. I have two questions:

1. If a teacher removes (the available option is Remove Submission instead of Delete) all submissions against any assignment, whether students' submissions will be deleted and will it result in freeing disk space (reducing moodledata size)?

2. In case the submissions are removed against an assignment whether or not graded annotated files, feedback and grades against those submissions will also be removed?

Mailing notifications of past assignments

$
0
0
by erika alarcon.  

Hi!   I am receiving email notifications of assignments that closed 2 years ago.

How can I eliminate the sending of these emails?

Re: Effect of Removing Submitted Assignments ?

$
0
0
by erika alarcon.  

Hello, if you delete exams it will free up the disk space, but it seems more effective if you Restart the courses that are no longer going to be used

Re: Mailing notifications of past assignments

$
0
0
by erika alarcon.  

I have Moodle 3.7
Viewing all 9670 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>