0 votes

Hi!

I have a feature request regarding home page actions.

I would LOVE the to be able to collapse and expand action groups on the home page. We have a multi customer set-up and thus actions per customer. As we're adding more and more customers to our Adaxes installation, this feature becomes more and more wanted.

by (960 points)

1 Answer

0 votes
by (216k points)

Hello,

In 2014 we are going to release a new version of Adaxes, in which we will considerably improve the look and feel of Adaxes Web Interface. The functionality you are asking for is already planned for that version.

0

Would it be able to implement this functionality now? Should be able to do this with a jquery?

0

We are not planning to implement this functionality until the release of Adaxes 2014.1.

However, if you want, you can implement a certain version of the feature for yourself with the help of jQuery. Adaxes already uses jQuery on many pages of the Web interface, and it is already connected to the Home Page. You do not need to connect jQuery to Adaxes Web Interface. Web Interface home page is displayed by the Default.aspx file located in the root directory of every Web interface type. So, you can create a JavaScript file that will be responsible for collapsing/expanding the Home Page Action groups on Adaxes Web interface and connect the file to Adaxes Web interface by adding it to the end of the Default.aspx file. In your JavaScript file, you can subscribe to different events that occur on the Web interface Home Page (such as OnLoad for the whole page or OnClick for the headers of Home Page Action groups) and perform collapsing/expanding of the Home Page Action groups.

To edit the Default.aspx file:

  1. On the computer where your Adaxes Web Interface is installed, open the folder for the Adaxes Web Interface site that you want to configure. By default, Adaxes Web Interface sites are installed to the following folders:

    • Administrators:
      C:\Program Files\Softerra\Adaxes 3\Web Interface\Admin\
    • Help Desk:
      C:\Program Files\Softerra\Adaxes 3\Web Interface\HelpDesk\
    • Self-Service:
      C:\Program Files\Softerra\Adaxes 3\Web Interface\SelfService\
  2. Find the Default.aspx file and open it with any text editor.

0

Thank you!

We've now implemented this function in our enviorment (just a very basic js).

If anyone else wants this, here's the script bit we added at the bottom of the Default.aspx file for the webinterface:

  <script type="text/javascript" language="javascript">
    $(document).ready(function() {
      $(".homePagePnl-itemGroupTitlePnl span").each(function() {
        $(this).html("<a href=\"#\">" + $(this).html() + "</a>");
      });
      $(".homePagePnl-itemGroupTitlePnl").click(function() {
        $(this).parent().children(".homePagePnl-itemPnl").slideToggle(100);
      });
      $(".homePagePnl-itemPnl").toggle();
    });
  </script>
0

Great! Thank you for sharing that!

Related questions

0 votes
1 answer

I have a web portal set up specifically for password self service and I would like to include links to our security policies as well as list the password requirements and our support ... Is there a way to include links and/or plain text as a card or something?

asked May 10, 2023 by DA-symplr (80 points)
0 votes
1 answer

For example, a content pane with "Directory objects and business units" showing "Business unit members". The members of the business unit are not sorted alphabetically by default. Can the sort order be configured?

asked May 5, 2023 by Carl Bruinsma (120 points)
0 votes
1 answer

My Help Desk users can unlock accounts one at a time under user management, Unlock Account. However, under the "Locked out Users" on the Home Page, there is no option to select multiple users to unlock- the check boxs are not visible.

asked Mar 12, 2020 by msylvester (60 points)
0 votes
1 answer

Hello We have the need to create a home page action for creating groups, security and distribution. We would like to see if this script https://www.adaxes.com/script-repositor . ... 3 (whatever is typed) Thank you for taking the time to look at this. Jay

asked Mar 12, 2018 by willy-wally (3.2k points)
0 votes
1 answer

Hi I have a colleague who claims, that objectCategory and/or objectClass should be included in LDAP searches, to reduce load on the domain controller. It sound reasonable, but ... build into the code behind the Home Page Action ? View Group example: - Thanks

asked Jan 4, 2018 by Boxx.dk (2.6k points)
3,362 questions
3,061 answers
7,812 comments
545,229 users