Cronicle icon indicating copy to clipboard operation
Cronicle copied to clipboard

Better displaying of chained jobs

Open mikeTWC1984 opened this issue 4 years ago • 1 comments

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).

mikeTWC1984 avatar Nov 13 '20 04:11 mikeTWC1984

Possible implementation using jquery ui tooltip image

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>

mikeTWC1984 avatar Nov 17 '20 03:11 mikeTWC1984