45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
|
|
/************************************************************
|
|
*
|
|
* tailbone.batch.js
|
|
*
|
|
* Common logic for view/edit batch pages
|
|
*
|
|
************************************************************/
|
|
|
|
|
|
$(function() {
|
|
|
|
$('.newgrid-wrapper').gridwrapper();
|
|
|
|
$('#execute-batch').click(function() {
|
|
if (has_execution_options) {
|
|
$('#execution-options-dialog').dialog({
|
|
title: "Execution Options",
|
|
width: 500,
|
|
height: 300,
|
|
modal: true,
|
|
buttons: [
|
|
{
|
|
text: "Execute",
|
|
click: function(event) {
|
|
$(event.target).button('option', 'label', "Executing, please wait...").button('disable');
|
|
$('form[name="batch-execution"]').submit();
|
|
}
|
|
},
|
|
{
|
|
text: "Cancel",
|
|
click: function() {
|
|
$(this).dialog('close');
|
|
}
|
|
}
|
|
]
|
|
});
|
|
} else {
|
|
$(this).button('option', 'label', "Executing, please wait...").button('disable');
|
|
$('form[name="batch-execution"]').submit();
|
|
}
|
|
});
|
|
|
|
});
|