diff --git a/views/bootstrap/class.ExtensionMgr.php b/views/bootstrap/class.ExtensionMgr.php index 9361c54ae..4d296562c 100644 --- a/views/bootstrap/class.ExtensionMgr.php +++ b/views/bootstrap/class.ExtensionMgr.php @@ -89,6 +89,13 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style { }); }); }); + /* This function is called after the list of installed extension is updated */ + function filterList() { + var value = $("#extensionfilter").val().toLowerCase(); + $("#extensionlist tbody tr").filter(function() { + $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1) + }); + } printFileChooserJs(); @@ -281,7 +288,7 @@ class SeedDMS_View_ExtensionMgr extends SeedDMS_Theme_Style {