View source | Discuss this page | Page history | Printable version   

ERP/2.60/Projects/UI Technology/Selector Prototype

Contents

Introduction

As a prototype of a new UI technology the proposal is to develop a new selector.

The selector is used when entering data in a many-to-one (foreign key) field in the Openbravo UI. The selector consists of a field and a popup window which allows a user to search for values (a business partner, a product, etc.). Currently in Openbravo selectors are completely hand-coded.

This page describes the development steps which need to be executed the implement the selector as a prototype for a new UI technology.

A change with the current selector is that the new selector will be defined in the Application Dictionary just like any other window/tab/field. The selector is then generated from the model. The prototype should support dynamic regeneration at runtime.


Ui selector field.png


Ui selector grid.png

Designed User Interface

The proposed user interface has been designed using Smartclient components. See here for the result.

Main development activities/parts

The selector prototype development consists of the following main parts:

Selector Window/Grid

The selector window/grid should support the following functions:

The grid should use labels and elements defined in the Application Dictionary. Also attention should be paid to internationalization and formatting of numbers/dates.

The development will go through the following steps:

The example grid will be used as a basis to develop templates which are used for the dynamic re-generation of the popup window (see later section).

Selector Field

The selector field is used in a standard Openbravo form. The selector field consists of the following parts:

For the development of the selector field the following two aspects are important to test/check:

Client-side datastore and JSON Data Server

The popup window and suggestion box will read data from the backend. On the client side the data store concept will be used. The Smartclient data store can work with a JSON data service on the server. The JSON data service should support a specific api which includes querying (filtering) and sorting.

Therefore a new Openbravo JSON service will be developed and delivered as a separate module. The new module can be used independently from this prototype making it possible to implement other UI's on top of Openbravo.

The JSON data service will also support a specific api focused on suggestion box features. The api used by the suggestion box is similar to the one used by a grid but there can be specific attention for performance as (when typing) the server can get hit by multiple requests in a short period of time.

For the initialy prototype the JSON data service does not need to support update/insert behavior.

Selector Definition in the Application Dictionary

The selector definition in the Application Dictionary has different aspects:

The development of this part should start with a small design phase (defining the AD model).

A question is how specific parameters can be specified for different types of references. For example a selector/suggestion box for a business partner can have different parameters (like the name to show in the suggestion box) than a suggestion box for products.

(Re-)Generation of the popup selector window

The selector popup window is generated from the AD definition. The development of the generation logic has several parts:

QA and the UI Prototype

The UI prototype should also be used as a basis for testing and checking QA processes in a new UI framework. There are 2 main components: the new field and the popup window. The idea is to develop two selenium tests to test these new components. The selenium tests can not be developed in the beginning of the prototype development as there should first be a UI to test. Possibly the static example can be used for the selenium testing.

Behavior

The behavior is described in a scenario.

The scenario starts on the form. Once the focus is in the field and the user starts typing, suggestions appear in a list box. This is standard behavior of SmartClient´s list box. For the prototype it will be good to examine whether we can use two different columns for the DataSource, for example Name and Key. The suggestions will then be combined in the list box.

The moment a value is selected from the list box, the list box will close and the chosen value will be used in the field.

Once the user clicks the UI selector button, a modal layer pops up. The current value is used as a column filter. This step is perhaps redundant and counter intuitive. The current behavior for filters is that the UI selector popup always starts with the current selection as a filter but the reason for opening the UI selector is that you want to search for another value than the current one. Leave it open for now.

Column filters show an X button to the right of the keyword filter in case a keyword is present. Clicking the X removes the filter and updates the grid.

After having clicked the X the focus needs to be in the column filter and the user can start typing. Here the adaptive filter of SmartClient is used. Clicking OK in the modal layer will port the selected value (row) in the grid back to the field in the form. Clicking Cancel will take the user back to the form where the field value remains unchanged.

Note: the images in the scenario show SmartClient´s demo grid columns that Openbravo ERP does not use, such as SKU or Item. In the prototype we should replace them by other attributes, such as Name and Key.

Keyboard handling

Specific attention needs to be paid to keyboard short cuts which should be implemented in the field and the grid. For example make it possible to select a record using just the keyboard and to 'jump' quickly through the suggestion box list.

The short cuts should preferably be the same and use the same keyboard short cuts as currently in Openbravo.

Openbravo Core changes

The UI prototype should be developed as a module. This requires several changes in Openbravo core:

Other aspects

Selector DataModel

This part of this wiki document describes the data model of the Selector. Initially it will focus on how to model the suggestion box as well as the popup grid behavior.

The selector consists of two main parts, the suggestion box and the popup grid.

Selector

Defines the selector 'header' information:

A selector has one or more suggestion box fields and one or more suggestion popup fields.

Selector Suggestion Box Fields

Selector Grid Fields

A selector can have one or more selector grid fields. The grid fields have the following columns:

title: a translatable name used as the column header

Smartclient Research Topics

Formatting/Validating of dates/numbers

Smartclient offers several ways of setting the date format logic. This can be set at different levels (type, class level, form, field level). Within Smartclient formatting patterns are specified in a way which is not completely the same as in Java. It needs to be studied how we can match the Openbravo formatting definition with the Smartclient approach. Can be considered together with the topic related to matching OB Reference with Smartclient simple types.

Mapping OB References to Smartclient Simpletypes

Smartclient has a simple type system which is extendable with custom types. It is possible to define validators and formatters in custom types. The research topic is to study and implement how the OB reference system can be used to generate OB simple types which can be used in Smartclient.

The OB simple types should also be used to define OB datasources.

Saving multiple edit actions in one transaction

There are use cases where it is required to save multiple edit actions in one server-side db transaction. Smartclient supports this in its Pro version. For the LGPL version this needs to be implemented. Smartclient offers a concept called queueing which can be used on the client to send multiple edit-requests in one http-requests. However after studying the forum/docs it seems that we need to implement our own format for sending multiple DSRequests in one http request. This needs to be studied further (search for queue or 'mass update' in the forums and docs).

Retrieved from "http://wiki.openbravo.com/wiki/ERP/2.60/Projects/UI_Technology/Selector_Prototype"

This page has been accessed 3,864 times. This page was last modified on 26 October 2009, at 12:13. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.