Github user ilgrosso commented on a diff in the pull request: https://github.com/apache/syncope/pull/21#discussion_r67342904 --- Diff: client/console/src/main/java/org/apache/syncope/client/console/widgets/NumberWidget.java --- @@ -37,6 +56,57 @@ public NumberWidget(final String id, final String bg, final int number, final St WebMarkupContainer box = new WebMarkupContainer("box"); box.add(new AttributeAppender("class", " " + bg)); + box.add(new AjaxEventBehavior("onmousedown") { + @Override + protected void onEvent(final AjaxRequestTarget target) { + List<AnyTypeTO> anyTypeTOs = new AnyTypeRestClient().list(); + PageParameters pageParameters = new PageParameters(); + if (id.equals("totalUsers")) { + pageParameters.add("selectedIndex", 1); + setResponsePage(Realms.class, pageParameters); + } else if (id.equals("totalGroups")) { + pageParameters.add("selectedIndex", 2); + setResponsePage(Realms.class, pageParameters); + } else if (id.equals("totalAny1OrRoles")) { + if (icon.equals("ion ion-gear-a")) { + final Triple<UserFormLayoutInfo, GroupFormLayoutInfo, Map<String, AnyObjectFormLayoutInfo>> + formLayoutInfo = FormLayoutInfoUtils.fetch(anyTypeTOs); + Collections.sort(anyTypeTOs, new AnyTypeComparator()); + int selectedIndex = 1; + for (final AnyTypeTO anyTypeTO : anyTypeTOs) { + if (anyTypeTO.getKey().equals(label)) { + pageParameters.add("selectedIndex", selectedIndex); + break; + } + selectedIndex++; + } + setResponsePage(Realms.class, pageParameters); + } else { + setResponsePage(Roles.class); + } + } else if (id.equals("totalAny2OrResources")) { + if (icon.equals("ion ion-gear-a")) { + final Triple<UserFormLayoutInfo, GroupFormLayoutInfo, Map<String, AnyObjectFormLayoutInfo>> --- End diff -- This variable is unused, remove.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---