Search the Community
Showing results for tags 'behaviour'.
-
We would like to create a widget for displaying achievement point totals/leaderboards in a similar format to PictoChart (Which we currently manually update via google sheets). The information is available in SIMS so it would save schools time and effort and be an excellent way for students to engage with Frog. I have pasted a copy of the points page (with PiktoCharts) to help describe what we are after. They are also nicely animated! Does anyone have the skills to be able to attempt something in Frog Academy?
- 2 replies
-
- achievement
- behaviour
-
(and 6 more)
Tagged with:
-
Hi, I am trying to create a widget that is able to pull the Total Positive Behaviour Points into a variable, the end result is we will use an if statement to display a specific image depending on a number of points the student has. I have started by testing with the HTML widget. using the below code to see if I can use the behaviour.getBehaviourTotals API to get the total points this year for the user, however, it is not working. <script> var $ap,user; //Create a div, and give it a unique ID $ap = $("div", { id: Frog.Utilities.generateSimpleID() } ); $ap.html( '<b>Your House Points:</b>'+ '<table clase="table" id="your_points">'+ '<tr>'+ "<th>This Year</th>"+ '</tr>'+ '</table>' ); // Use Frog's API to get the logged in student user = FrogOS.getUser(); // Use Frog's API to get Behaviour points Frog.Model .api('behaviour.getBehaviourTotals',{ Student_uuid: user.uuid, }).done(function(behaviourResponse){ behaviourResponse.data.pos.year(function(work){ $ap.find('tbody') .append( '<tr>'+ '<td>'+ data.pos.year+ '</td>'+ '</tr>' ); }); }); arguments[0].append($ap); </script> any advice appreciated. Phil
-
Hi all, In Frog 3 I used to have a section where I could go an search for a behaviour incident that was pulled through by the MIS and delete it. This was helpful to be able to do so that parents were not confused when they looked at a behaviour incident they had been told was removed or cancelled, when a teacher or HOY had discovered a couple of days after the incident that it wasn't that student. Is there anyway of doing this in Frog Learn? Thanks Aimée