Actions select bulk operations view
This commit is contained in:
parent
4aaddf063c
commit
e8e7dcc5ec
|
@ -1257,11 +1257,11 @@ echo '<h3 class="error invisible" id="message"> </h3>';
|
|||
|
||||
html_print_input_hidden('id_agente', $id_agente);
|
||||
|
||||
echo '</div>';
|
||||
attachActionButton('update_agents', 'update', $table->width, false, $SelectAction);
|
||||
echo '</form>';
|
||||
|
||||
// Shown and hide div.
|
||||
echo '</div></form>';
|
||||
|
||||
ui_require_jquery_file('form');
|
||||
ui_require_jquery_file('pandora.controls');
|
||||
ui_require_jquery_file('ajaxqueue');
|
||||
|
|
|
@ -555,6 +555,7 @@ echo sprintf(
|
|||
$status
|
||||
);
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
|
||||
attachActionButton('edit_users', 'update', '100%', false, $SelectAction);
|
||||
|
||||
|
|
|
@ -249,6 +249,8 @@ $table->data[5][1] .= '</form>';
|
|||
|
||||
html_print_table($table);
|
||||
|
||||
html_print_action_buttons('', ['right_content' => $SelectAction, 'class' => 'pdd_b_10px_important pdd_t_10px_important']);
|
||||
|
||||
echo '<h3 class="error invisible" id="message"> </h3>';
|
||||
|
||||
ui_require_jquery_file('form');
|
||||
|
|
|
@ -448,7 +448,9 @@ if ($option === 'edit_agents' || $option === 'edit_modules') {
|
|||
$tip = ui_print_help_tip(__('The blank fields will not be updated'), true);
|
||||
}
|
||||
|
||||
$SelectAction = '<form method="post" id="form_options" action="'.$url.'">';
|
||||
global $SelectAction;
|
||||
|
||||
$SelectAction = '<form id="form_necesario" method="post" id="form_options" action="'.$url.'">';
|
||||
$SelectAction .= '<span class="mrgn_lft_10px mrgn_right_10px">'._('Action').'</span>';
|
||||
$SelectAction .= html_print_select(
|
||||
$options,
|
||||
|
|
|
@ -277,6 +277,8 @@ $table->data[5][1] .= '</form>';
|
|||
|
||||
html_print_table($table);
|
||||
|
||||
html_print_action_buttons('', ['right_content' => $SelectAction, 'class' => 'pdd_b_10px_important pdd_t_10px_important']);
|
||||
|
||||
echo '<h3 class="error invisible" id="message"> </h3>';
|
||||
|
||||
ui_require_jquery_file('form');
|
||||
|
|
|
@ -7546,6 +7546,10 @@ div.graph div.legend table {
|
|||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.pdd_b_10px_important {
|
||||
padding-bottom: 10px !important;
|
||||
}
|
||||
|
||||
.pdd_b_20px {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
@ -7616,6 +7620,10 @@ div.graph div.legend table {
|
|||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.pdd_t_10px_important {
|
||||
padding-top: 10px !important;
|
||||
}
|
||||
|
||||
.pdd_t_15px {
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue