Project

General

Profile

GUI standard » History » Version 4

Max Milbers, 02/25/2011 04:55 PM

1 1 Max Milbers
h1. GUI standard
2
3
Here follows a list of best practices when working develop a virtuemart view.
4
5
h2. Using javascript
6
7
Administrators should have js enabled. We can expect that administrators have js enabled. Therefore the backend can have features that only reachable with js.
8
9
But the shoppers are sometimes afraid to use js and dont trust a shop that is only working with js. So the whole frontend should be workable without js. This does not mean that every feature for comfort must be accessible without js, but the base functions.
10
11
h2. Use of of JText and hardcoded formats and simular
12
13
@echo JText::_('VM_FILES_LIST_THUMBNAIL_IMG').": ";@
14
This is very bad and mustn't done. The ":" is hardcoded in the code. The right solution here is to write
15
16
@echo JText::_('VM_FILES_LIST_THUMBNAIL_IMG');@
17
and to add the colon to the language file.
18
19
h2. Clicking cancel
20
21
When the user clicks cancel, the user is taken back from the editing screen to the page listing. No cancellation message will be shown.
22
23
h2. Delete button on row
24
25
The page listings should not contain a delete button per row. A single delete button needs to be placed in the toolbar.
26
27
h2. Database ID numbers
28
29
The page listings should not contain a database ID number.
30
31
h2. Sortable columns
32
33
A column should, where possible be made sortable by clicking on the column header.
34
35
h2. List order fields
36
37
A list order field should for new entries be disabled and shown the text string containing: "New items default to the last place. Ordering can be changed after this item is saved." For existing entries, the List order dropdown will be shown, this will allow the user to choose where to place the item.
38 3 Max Milbers
39
h2. Hiding of layouts for the joomla view chooser
40 4 Max Milbers
41 3 Max Milbers
It is important that there is always the default layout visible in the chooser. In other case layouts used for overrides, makes it impossible to choose the default layout.