mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-07-22 19:33:34 +03:00
Allow removal of members from groups.
This commit is contained in:
parent
417e9ca848
commit
d915137eff
3 changed files with 48 additions and 5 deletions
|
@ -1069,9 +1069,14 @@ $(document).ready(function () {
|
|||
$('#Groups').jtable('openChildTable',
|
||||
$img.closest('tr'), {
|
||||
title: 'Members of ' + data.record.name,
|
||||
messages: {
|
||||
addNewRecord: 'Add group member',
|
||||
deleteConfirmation: 'This user will be removed from the group. Are you sure?'
|
||||
},
|
||||
actions: {
|
||||
listAction: 'groups.php?action=listmembers&groupid=' + data.record.id,
|
||||
createAction: 'groups.php?action=addmember&groupid=' + data.record.id
|
||||
createAction: 'groups.php?action=addmember&groupid=' + data.record.id,
|
||||
deleteAction: 'groups.php?action=removemember&groupid=' + data.record.id
|
||||
},
|
||||
fields: {
|
||||
id: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue