Set id for details box
[misc/kostenrechnung] / masks / geraete.php
1 <?php
2
3 $mask = array(
4               'table' => 'gerate',
5               'sort' => 1,
6               'list' => array(
7                               'id' => array(
8                                             'name' => 'ID',
9                                             'visible' => false,
10                                             ),
11                               'geraet' => array(
12                                             'name' => 'Gerät',
13                                             'width' => 150,
14                                             ),
15                               'gerstdsatz' => array(
16                                             'name' => 'Satz',
17                                             'type' => 'number',
18                                             'specs' => "decPlaces: 2, ClassName: 'alignright'",
19                                             'width' => 50,
20                                             ),
21                               'geraetkst_intern' => array(
22                                             'name' => 'intern',
23                                             'type' => 'number',
24                                             'specs' => "decPlaces: 2, ClassName: 'alignright'",
25                                             'width' => 60,
26                                             ),
27                               'geraetkst_extern' => array(
28                                             'name' => 'extern',
29                                             'type' => 'number',
30                                             'specs' => "decPlaces: 2, ClassName: 'alignright'",
31                                             'width' => 60,
32                                             ),
33                               ),
34               'rows' => 20,
35               );
36
37 ?>