Versions Compared

Key

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

...

In the default installation, an app called "App Center" with the Userview named "Joget Workflow" is preloaded in

...

Overall Structure of App Center App

The default App Center app can be customized towards individual's preferences.

  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>



Customizing the App Center's Userview

  1. The logo that is displayed in the App Center can be changed under Userview Builder's settings > Logo URL.
    Image Added

  2. The "Home Banner" and "Custom CSS" can be cuztomized.
    Image Added
  3. The help guide feature can be disabled in the same page too.
    Image Added

 

Customizing the App Center's Form

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>