Difference between revisions of "AppSuite:Developing for the UI"

(Tech Overview)
(Tech Overview)
Line 8: Line 8:
 
All technologies and frameworks used for developing a new component for the Appsuite UI are listed and described in the following article: [[AppSuite:UI developer primer| Skills needed to develop the UI]]
 
All technologies and frameworks used for developing a new component for the Appsuite UI are listed and described in the following article: [[AppSuite:UI developer primer| Skills needed to develop the UI]]
  
In addition to those UI developing technologies you also need the Appsuite backend (Application Server) running (at least parts of) flawlessly.  
+
Since the Appsuite product consists of a server and a UI, you also need a working backend (Appsuite application server) to communicate with.  
  
 
You have 2 options:
 
You have 2 options:
  
* Checkout and deploy the backend server locally using Eclipse IDE. [[AppSuite:Apache Configuration | Apache config]]  
+
* Checkout and deploy the backend locally using Eclipse IDE. [[AppSuite:Apache Configuration | Apache config]]  
  
 
* or run [[AppSuite:Appserver | Appserver]]
 
* or run [[AppSuite:Appserver | Appserver]]

Revision as of 12:28, 17 October 2013

Developing For OX Appsuite

This portal contains articles about the inner workings of the web-based graphical user interface. It is aimed at software developers that want to improve on existing features, implement extensions or just gain a general understanding.

Tech Overview

All technologies and frameworks used for developing a new component for the Appsuite UI are listed and described in the following article: Skills needed to develop the UI

Since the Appsuite product consists of a server and a UI, you also need a working backend (Appsuite application server) to communicate with.

You have 2 options:

  • Checkout and deploy the backend locally using Eclipse IDE. Apache config
  • or run Appserver
  • Use an existing OX appsuite server and

Therefore you can either copy the source from openxchange git repositories and (with local parts of the appsuite) automaticly getting the recent stable source packages from the appsuite servers.

Developing Style Guide

While developing code for OX products the UI Developement Style Guide helps you writing safe, clear and functional code.

Designing apps, plugins and widgets running with the right layout, colors, look and feel is a breeze following the guidelines described in the UI Design Guide.

Always keep in mind, that using OX products should be possible for everyone and therefor it's important to follow simple rules regarding accessibility.

Writing apps or plugins for appsuite will often include extending the existing user interface. Appsuite provides extension points offering you possibilties to add your own contents. Beginning to develop using extension points? Read this guide first having a hands-on introduction for extending the OX user interface. Get more information and a complete list of extension points offered by OX products.

How to get code

Using git as a version version control system getting the code from existing OX products is quite easy. Simply clone the UI or the backend repository and start working with it.

What can i build?

The following possibilities are available to develop for AppSuite.

  • A portal plugin is a widget, which can be used in the 'portal'-section of appsuite only. Please just check for the right extension point to write a plugin which extends and interacts with other parts of AppSuite. Configuring portal plugins can be achieved by reading this guide
  • Upsell Widget , to enable the Appsuite user to purchase additional features.
  • A wizard, which can be first time users to show them important informations or configure initial settings for 3rd party applications.

You got stuck somewhere? There are some hints, which might help you debugging the UI.

How to get your code running

Written your first app/plugin? Using the UI build system will help you to get fast, easy-to-distribute and correct builds running on your AppSuite. The article will show you how to package your code and copy from OX source code / directories.