Project

General

Profile

GUI standard » History » Version 5

Max Milbers, 10/19/2011 11:15 AM

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 5 Max Milbers
and to add the colon and space to the language file.
18
19
h2. Reference to functions in explanations
20
21
Use in explanation always the sprintf function to use the real label of the button and do not use some meta expression for it. For an exampel look on the view updatesmigration (Tools & Migration) in BE.
22
@echo JText::sprintf('COM_VIRTUEMART_SYSTEM_DANGEROUS_TOOL_ENABLED',JText::_('COM_VIRTUEMART_ADMIN_CFG_DANGEROUS_TOOLS'),$link)@
23
Before we had a text like "Please enable the dangerous tools in the config". But the option is named "Enable database Update tools". The new text shows "To use these tools fully, you must check 'Enable database Update tools' in the Configuration panel." There is additionally a link added directly to the option, this is also a prefered behaviour.
24 1 Max Milbers
25
h2. Clicking cancel
26
27
When the user clicks cancel, the user is taken back from the editing screen to the page listing. No cancellation message will be shown.
28
29
h2. Delete button on row
30
31
The page listings should not contain a delete button per row. A single delete button needs to be placed in the toolbar.
32
33
h2. Database ID numbers
34
35
The page listings should not contain a database ID number.
36
37
h2. Sortable columns
38
39
A column should, where possible be made sortable by clicking on the column header.
40
41
h2. List order fields
42
43
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.
44 3 Max Milbers
45
h2. Hiding of layouts for the joomla view chooser
46 4 Max Milbers
47 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.