#11206 Fix custom field view
This commit is contained in:
parent
1afed9f262
commit
f5d20dc8eb
|
@ -12659,7 +12659,7 @@ div.agents_custom_fields #datatables_wrapper div.bottom {
|
|||
.dt-buttons {
|
||||
width: auto;
|
||||
position: absolute;
|
||||
margin-left: 55px;
|
||||
margin-left: 90px;
|
||||
}
|
||||
|
||||
.title_tactical {
|
||||
|
|
|
@ -369,7 +369,7 @@ a.pandora_pagination.current:hover {
|
|||
font-size: 20px;
|
||||
height: 38px;
|
||||
width: 80px;
|
||||
margin-left: 130px;
|
||||
margin-left: 90px;
|
||||
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -900,7 +900,11 @@ td.w75p#rightcolumn {
|
|||
.dataTables_wrapper .dataTables_filter {
|
||||
float: left;
|
||||
text-align: right;
|
||||
margin-left: 65%;
|
||||
margin-left: 64%;
|
||||
padding-left: 0px;
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
||||
background: #bcbcbc;
|
||||
}
|
||||
|
|
|
@ -310,15 +310,15 @@ if (check_acl($config['id_user'], 0, 'PM')) {
|
|||
$decode_filters = base64_encode(json_encode($filters));
|
||||
|
||||
$table->data[3][5] = '<div style="display: inline;">';
|
||||
|
||||
$table->data[3][5] .= html_print_button(
|
||||
/*
|
||||
$table->data[3][5] .= html_print_button(
|
||||
__('Export to CSV'),
|
||||
'csv_export',
|
||||
false,
|
||||
"blockResubmit($(this)); location.href='monitoring/custom_fields_csv.php?filters=$decode_filters&id_custom_field=$id_custom_fields&id_status=$decode_id_status&module_status=$decode_module_status'",
|
||||
'class="sub next"',
|
||||
true
|
||||
);
|
||||
);*/
|
||||
$table->data[3][5] .= '</div>';
|
||||
}
|
||||
|
||||
|
@ -943,12 +943,11 @@ function table_datatables(filters, indexed_descriptions, processing){
|
|||
//info: "Page _PAGE_ of _PAGES_",
|
||||
infoEmpty: "No results",
|
||||
infoFiltered: "",
|
||||
search: "Search:"
|
||||
/*
|
||||
search: "Search:",
|
||||
paginate:{
|
||||
next: "First",
|
||||
previous: "Last"
|
||||
}*/
|
||||
next: "Last",
|
||||
previous: "Next"
|
||||
}
|
||||
},
|
||||
sDom: '<"top"lfp>rt<"bottom"ip><"clear">',
|
||||
columns: [
|
||||
|
|
Loading…
Reference in New Issue