Jump to content

ADT

Frog Community Genius
  • Posts

    1,957
  • Joined

  • Last visited

Posts posted by ADT

  1. 5 hours ago, Graham Quince said:

    I don't think I'd be  the only one.  Did you see the essay marking post?  It's impressive what's possible, but it will be a nightmare for teachers dealing plagiarism.

    Id heard they were looking into a way to detect if it wrote essays etc........  but there is no way to detect coding!! Computer Science NEA's are going to be fun if you can't tell if the kid has done it or an AI!! 😜

  2. Afternoon...


    So not sure how many of you use SIMs and Frog.... there is an issue that sometimes crops up!! 

    When there is a clash on the timetable we can select in SIMs which is the "favoured" lesson!  This is not picked up on Frog so students sometimes have lessons on Frog that they shouldn't be attending and the correct lesson not showing!

    It seam's there was a attempt to get this sorted a number of years ago....  but if you could put your weight behind it please do!!
     

    Thanks

    https://ideas.frogcommunity.com/ideas/FRG-I-423

  3. 2 hours ago, gbligh said:

    I'd be interested to know what other school's log in numbers are like now we are getting closer to the summer. Our student ones are dropping off each day .... normally get around 1,900 - 2,000 student ones per day but yesterday we was down to 870!

    Similar patterns? @Graham Quince @ADT

    Afternoon George.... 

    You need to keep in mind we are a high school with a sixth form... so we have lost two of our year groups....  about 600 kids!!!

    So for May we were averaging about 3.5k mid week for June we were averaging 2.7K mid week!!

    Thanks!!

    • Like 2
  4. You might want to add modal-body to make it longer....

    <style>
      .modal {
        width: 60% !important;
        left: 35% !important;
      }
      .modal-body {
        max-height: 800px !important;
        }
    </style>  

     

    • Like 2
  5. On 29/05/2022 at 20:15, gbligh said:

    We have a form that has a 3 column layout question. Teachers will be editing the form, so when it's opened in the data viewer pop up, it would be good if it was full screen - or just bigger than it is now. Is this possible?

    @Graham Quince @pconkie

    Something i mentioned ages ago....  cant remember what the response was but clearly it wasn't the one i was after!! ?

  6. 4 minutes ago, Graham Quince said:

    Here's a much neater, combined version both for students (and for staff to use with the user picker widget):

    <style>
        .my_data {
            border-radius: 6px;
            border: 1px solid #cccccc;
            padding: 10px;
            text-align: left;
            font-size: 19px;
            line-height: 25px;
        }
    
    </style>
    
    <div class="my_data"></div>
    
    <script>
    var myDataDiv = arguments[0].find('.my_data');
    var FORM_UUID = 'FORM_UUID';
    var USER_FIELD_UUID = 'USER_FIELD_UUID'; // Field value for the User ID, you may need to check the Developer console to confirm this UUID
    var user = FrogOS.getUser();
        
    function getEntries(userUUID) {
        myDataDiv.empty();
        
        var apiData = {
            content_uuid: FORM_UUID,
            current_user_only: false,
            form_uuid: FORM_UUID,
            limit: '5',
            module: 'form',
            offset: '0',
            sort_dir: 'DESC',
            sort_field: 'date'
        };
        
        if (user.profile.name == 'Staff' || user.profile.name == 'Admin') {
            apiData.filters = [{
                field_name: USER_FIELD_UUID, 
                value: userUUID
            }];
        }
      
        Frog.Model.api(
            'dataviewer.gettable', 
            apiData
        ).done(function(response) {
            var personalData = response.data;
            $.each(personalData, function(index, entry) {
                var data = entry.fields[1].responses[0].response;
                data = JSON.parse(data);
                
                $.each(data, function(index, datum) {
                    if (datum) {
                        //  if (index == "Score" || index == "Grade") { // should you wish to only return some fields
                        myDataDiv.append(
                            index+
                            ': '+
                            datum+
                            '<BR>'                       
                        )                   // }
                    }
                }) // end of data $.each
            }); // end of personalData $.each
        }).fail(function(e) {
            // Report Error
            console.log("failed to load data");
        });
        
    };
        
    getEntries(user.uuid);
        
    $('div[data-content-uuid="75BD91D02002887198A0CF29FBAE2E0C598CBA9CDECD6026"]').on('broadcast.selectedUser',function(el, ev) { 
        var user_uuid = ev.model.uuid;
        getEntries(user_uuid);
    });
    
        
        
    </script>

     

    Bit slow at Frog Towers at the moment @Graham Quince..... ?

    • Haha 1
  7. 40 minutes ago, gbligh said:

    Lots of our parents don't change the select date widget when looking for progress reports, therefore they claim they are not there! Is there a way to tell the Select Date widget to choose certain dates? I'm thinking always change the from date to September?

    @ADT

    @Graham Quince

    @pconkie

    No point asking me... it sounds like it involves code!!!  Im out!! ?

    • Haha 1
  8. 2 hours ago, deanmoulder said:

    This wonderful, incredible, amazing widget has stopped working for me. I am assuming that Microsoft have changed something for this to happen. I'm getting a 'sign into sharepoint' thing, as I am sharing documents from sharepoint as opposed to OneDrive. 

    Has anyone else experienced this? 

    I've been using this widget to show all sorts, timetables and exam timetables and powerpoints, It's saved me time fiddling around with the HTML widget. 

     

    Is this one of @Graham Quince 's?

    • Like 1
  9. On 06/04/2022 at 19:48, gbligh said:

    I've been building a template that allows teachers to create a 'workspace' like area just for their class. I wondered if there was a way in Frog Code to have a notice board/message wall style widget that allows you to only send messages to certain kids in that group. In Google Classroom, you can choose to send a message to the whole class or just certain kids.

    @Graham Quince @pconkie

    Frog Messages?

  10. 2 hours ago, Graham Quince said:

    I'm too busy seeing if I can remove your existing badge - it bugs me too - but then I didn't think to check it for a smaller space.

    I don't want your excuses im after a solution... ?

  11. 13 hours ago, gbligh said:

    Forgot to copy in the usual contributors! :) 

    @ADT @pconkie @Graham Quince

    I had a play with this years ago....  well with the help of @Graham Quince if i remember!

     

    <script>
    ///////////////////////////////////////////////////////////////
    /// you will need the data-content-uuid of the widget you want to show/hide
    // get this from the inspector (right click - - inspect)
    //////////////////////////////////////////////////////////////
    var widget_to_hide = "42140000200287F6954DBF1CEB29FA0C24F4607C6376CF04";

        // attach click functions to buttons
        $( ".showme" ).click(function() {
            $("div[data-content-uuid='"+widget_to_hide+"']").show();
        });
         $( ".hideme" ).click(function() {
            $("div[data-content-uuid='"+widget_to_hide+"']").hide();
        });
        
        // automatically by time of day?
        var format = 'hh:mm:ss';
        // var time = moment() gives you current time. no format required.
        var time = moment();
        var beforeTime = moment('10:30:00', format);
        var afterTime = moment('15:30:00', format);

        if (time.isBetween(beforeTime, afterTime)) {
            console.log('is between');
            //show?
            $("div[data-content-uuid='"+widget_to_hide+"']").show();
        } else {
            console.log('is not between');
            //hide?
            $("div[data-content-uuid='"+widget_to_hide+"']").hide();
        } 
    </script>

    <button class="showme" type="button">Show</button>
    <button class="hideme" type="button">Hide</button>

    • Like 2
    • Thanks 1
  12. ts that time of year again.... again.....  again... again  I have completed my yearly look to see which weirdo was on Frog over the Christmas Holidays.....  Still the worst game of Top Trumps ever!! ?

    5 users logged in between 23:00 - 23:59 24th Dec  (all students... last member of staff was on at 9:40pm)

    5 users logged in between 00:00 - 01:00 25th Dec  (again all students... 1st member of staff was on at 9:16am)

    145 users logged on in total on the 25th Dec (6 Members of staff and 1 Parent )

    2 users logged on during the Queens Speech (3pm - 3:10pm)

    0 users logged on between 23:00 - 23:59 31st Dec (last login was by a student at 9:52pm)

    20 users logged on between 00:00 - 03:00 1st Jan

    375 users logged on in total on 1st Jan (including 10 Staff & 2 Parents)

    1687 users logged in over the holidays (including 98 Staff, 32 Parents & Governor)

    with a total number of logins of 7452

    Totaling 4499 hours on Frog or 187 Days!!!

    2021- 2022

    • Like 1
  13. 1 hour ago, Sue Busher said:

    We are a large secondary school and I am looking for suggestions on how I can help display Tutor information easily from the dashboard, without it distracting/confusing with the wider staff communications. Notices seem the obvious way, but is there a way of integrating more effectively with tabs?

    Anyone else tackled this effectively? If so, can you share screengrabs?

    image.png

     

    We have a Tutor dashboard (pip at the bottom of the screen)!!  Staff can add notices to whole school... specific year or drill down to form class!!! 

    That way if a tutor is off and someone is covering they can see see notices for years... or specific notices to be pass on to specific kids in a form class!!  Which might have been just emailed in the past.....  and the cover teacher wouldn't be able to pass on!!

    Is that the thing you were after?

    • Like 1
    • Thanks 1
  14. 38 minutes ago, Graham Quince said:

    @ADT - well this thread talks about Adam's custom widget, so I was just checking.

    Have you reported it to the service desk?

    Morning...  yeah i just searched the forum for anything booking stumbled upon this and thought id see if the man himself @gbligh was experiencing the same issue!

    But yes....  i've also included Adams code on the page....  quite useful for letting staff delete their own entries.

    And no.... i didn't get chance to log it with the service desk....  that is on the list for today!!! ?

    • Thanks 1
×
×
  • Create New...