| Line 1... |
Line 1... |
| 1 |
$(document).on('click', 'a.category-level', function(){
|
1 |
$(document).on('click', 'a.category-level', function(){
|
| - |
|
2 |
var table = $('#ticket-category').DataTable();
|
| 2 |
$(this).closest('tbody').find('td').removeClass('highlight');
|
3 |
table.$('td').removeClass('highlight');
|
| 3 |
let category = $(this).data("category");
|
4 |
let category = $(this).data("category");
|
| 4 |
let level = $(this).data("level");
|
5 |
let level = $(this).data("level");
|
| 5 |
doGetAjaxRequestHandler(context + "/admin/resources?ticketCategoryId=" + category + "&escalationType=" + level, function (response) {
|
6 |
doGetAjaxRequestHandler(context + "/admin/resources?ticketCategoryId=" + category + "&escalationType=" + level, function (response) {
|
| 6 |
response = JSON.parse(response);
|
7 |
response = JSON.parse(response);
|
| 7 |
$("#access-resource").find(":input").each(function (index, element) {
|
8 |
$("#access-resource").find(":input").each(function (index, element) {
|