CC-3174 : showbuilder
adding new column last_scheduled to cc_show_instance changing column time_filled to be of type interval.
This commit is contained in:
parent
b1fbeeb448
commit
f14ebce239
10 changed files with 219 additions and 75 deletions
|
@ -196,17 +196,17 @@ $(document).ready(function() {
|
|||
aData = oTT.fnGetSelectedData(),
|
||||
item,
|
||||
temp,
|
||||
ids = [];
|
||||
aItems = [];
|
||||
|
||||
for (item in aData) {
|
||||
temp = aData[item];
|
||||
if (temp !== null && temp.hasOwnProperty('id')) {
|
||||
ids.push(temp.id);
|
||||
aItems.push({"id": temp.id, "instance": temp.instance});
|
||||
}
|
||||
}
|
||||
|
||||
$.post( "/showbuilder/schedule-remove",
|
||||
{"ids": ids, "format": "json"},
|
||||
{"items": aItems, "format": "json"},
|
||||
function(data) {
|
||||
oTable.fnDraw();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue