// --
// Copyright (C) 2001-2020 OTRS AG, https://otrs.com/
// --
// This software comes with ABSOLUTELY NO WARRANTY. For details, see
// the enclosed file COPYING for license information (GPL). If you
// did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
// --
"use strict";
var Core = Core || {};
Core.Agent = Core.Agent || {};
Core.Agent.Admin = Core.Agent.Admin || {};
/**
* @namespace Core.Agent.Admin.CustomerUserService
* @memberof Core.Agent.Admin
* @author OTRS AG
* @description
* This namespace contains the special module function for CustomerUserService selection.
*/
Core.Agent.Admin.CustomerUserService = (function (TargetNS) {
/*
* @name Init
* @memberof Core.Agent.Admin.CustomerUserService
* @function
* @description
* This function initializes filter and "SelectAll" actions.
*/
TargetNS.Init = function () {
// initialize "SelectAll" checkbox and bind click event on "SelectAll" for each relation item
Core.Form.InitSelectAllCheckboxes($('table td input[type="checkbox"][name=ItemsSelected]'), $('#SelectAllItemsSelected'));
$('input[type="checkbox"][name=ItemsSelected]').click(function () {
Core.Form.SelectAllCheckboxes($(this), $('#SelectAllItemsSelected'));
});
// initialize table filter
Core.UI.Table.InitTableFilter($("#FilterServices"), $("#Service"));
};
Core.Init.RegisterNamespace(TargetNS, 'APP_MODULE');
return TargetNS;
}(Core.Agent.Admin.CustomerUserService || {}));