Owner groupID change from user area
Posted: 2020-08-16 19:22
hi,
https://imgur.com/AIvJWdR
my code is
i want to change this record owner to another as like as batch transfer
function accept(){
This Record owner groupID(guest) change to another groupID(student) and carry this record
}
can u help me this query
thank you
https://imgur.com/AIvJWdR
my code is
Code: Select all
if( $memberInfo['group']!='guest'){
ob_start(); ?>
<script>
$j(function(){
<?php if($selectedID){ ?>
$j('#student_form_dv_action_buttons .btn-toolbar').append(
'<div class="btn-group-vertical btn-group-lg" style="width: 100%;">' +
'<button type="button" class="btn btn-warning btn-lg" onclick="accept()">' +
'<i class="glyphicon glyphicon-ok"></i> Accept!</button>' +
'</div>'
);
<?php } ?>
});
function accept(){
alert("We're doing something else!");
}
</script>
<?php
}
function accept(){
This Record owner groupID(guest) change to another groupID(student) and carry this record
}
can u help me this query
thank you
