Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. In order to edit it, simply heads to "All Apps" as the administrator. Click on "App Center" app.
  2. Then, click on "Joget Workflow".
  3. In the Userview Builder, edit the only menu that you see in it.
  4. It is a form menu that points to the form named "Published Apps".

    By defining the content of the form, we will be able to alter the content of the default app center. Simply return to step 2 above and open up the form.
  5. In the form's design, there are 2 custom HTML elements.

    The first one (highlighted in red) is meant to be shown when a user of administrator role logs in. The second one (highlighted in blue) is to be shown all the time.
  6. Edit the second Custom HTML to reveal its code.

    Code Block
    languagexml
    linenumberstrue
    <link rel="stylesheet" href="/jw/css/appCenter.css" />
    <div id="main-action-help"><i class="fa fa-info-circle"></i></div>
    <div id="search"></div>
    <div id="apps"></div>
    <p>
    <script src="/jw/js/appCenter.js"></script>
    <script>
    AppCenter.searchFilter($("#search"), $("#apps")); 
    AppCenter.loadPublishedApps("#apps");
    </script>
    </p>



...