Cronicle
Cronicle copied to clipboard
Better displaying of chained jobs
Currently, if job PARENT is chaining job CHILD you would see chain mark in front of parent job, and typically "On Demand" under child schedule. So the actual connection between those 2 is not visible. To make it more intuitive, "On Demand" could be replaced with "[PARENT]". That could also be url to parent details and contain tooltip showing parent job schedule. Chain mark around parent can also have some tooltip showing child job and trigger (success/failure).
Possible implementation using jquery ui tooltip
to enable custom html for tooltip:
<script>
//$(function () { $(document).tooltip({ show: null }); });
$(function () {
$.widget("ui.tooltip", $.ui.tooltip, {
options: {
content: function () {
return $(this).prop('title');
}
}
});
$(document).tooltip();
});
</script>