diff --git a/extensions/scheduler/deployment/src/main/resources/dev-templates/schedules.html b/extensions/scheduler/deployment/src/main/resources/dev-templates/schedules.html index c9de895791bd5..b05ef8aacd3be 100644 --- a/extensions/scheduler/deployment/src/main/resources/dev-templates/schedules.html +++ b/extensions/scheduler/deployment/src/main/resources/dev-templates/schedules.html @@ -6,9 +6,25 @@ color:blue; text-decoration:underline; } + + .formInputButton:hover { + color: #3366ac !important; + cursor: pointer; + } + + #filterInputGroup { + padding-bottom: 10px; + } {/style} {#script} $(document).ready(function(){ + $("#filterInput").on("keyup", function() { + var value = $(this).val().toLowerCase(); + $(".schedulerTable tr").filter(function() { + $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1); + }); + }); + if (!ideKnown()) { return; } @@ -23,6 +39,16 @@ openInIDE($(this).text()); }); }); + + function clearFilterInput(){ + $("#filterInput").val(""); + $(".schedulerTable tr").filter(function() { + if(!$(this).is(":visible")){ + $(this).toggle(true) + } + }); + } + {/script} {#body} {#if info:scheduler.running} @@ -39,6 +65,13 @@ {/if}
+
+ +
+ +
+
+ @@ -48,7 +81,7 @@ - + {#for scheduledMethod in info:schedulerContext.scheduledMethods}
Actions
{scheduledMethod_count}.