mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
35 lines
1007 B
JavaScript
35 lines
1007 B
JavaScript
|
|
function onRemoveGroup() {
|
|
hideAllForms();
|
|
showElement("groupeditform");
|
|
removeGroupFromGrouping();
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Removes the selected group from the selected grouping, does not delete the group (so it can e.g. be added to
|
|
* another grouping
|
|
*/
|
|
function removeGroupFromGrouping() {
|
|
//alert("Called removeGroupFromGrouping");
|
|
var url = "removegroupfromgrouping-xml.php";
|
|
var requeststring = "groupid="+selectedgroupid+"&groupingid="+selectedgroupingid;
|
|
sendPostRequest(request, url, requeststring, removeGroupFromGroupingResponse);
|
|
}
|
|
|
|
/**
|
|
* The callback for the response to the request sent in removeGroupFromGrouping()
|
|
*/
|
|
function removeGroupFromGroupingResponse() {
|
|
if (checkAjaxResponse(request)) {
|
|
//alert("removeGroupFromGroupingResponse called");
|
|
var xmlDoc= request.responseXML;
|
|
// Need XML sent back with groupingid
|
|
// Really want to set this to be the grouping before
|
|
selectedgroupid = null;
|
|
updateGroupings();
|
|
}
|
|
}
|
|
|
|
|