inc.php.
Navigation Bar
This bar is displayed at the top of results and also at the bottom. Column headers
can be repeated at certain intervals among results depending on the value entered in
repeat headers after....
In the previous example, the bar was simple:
The bar enables us to navigate from page to page, displaying an arbitrary number
of records (or rows), starting at some point in the results. Since we entered browse
mode by clicking Browse, the underlying query that generated the results includes
the whole table. However, this is not always the case.
Notice that we are positioned at record number 0 and are seeing records in
horizontal mode.
The default display mode is 'horizontal', as defined in $cfg['DefaultDisplay'].
We can also set this to 'vertical' if we usually prefer this mode. Even if our preferred
mode is set in this configuration parameter, we can always use the Show dialog to
change it on-the-fly:
First Steps
[ 78 ]
Another possibility is the 'horizontalflipped' choice, which rotates the column headers
by 90 degrees. If we try this choice, another parameter, $cfg['HeaderFlipType'],
plays a role. Its default value, 'css', displays true rotated headers, but not every
browser supports this??”Internet Explorer 7 does and produces:
On other browsers, it seems the best we can achieve is by setting
$cfg['HeaderFlipType'] to 'fake':
We are currently using a table containing a small number of rows.
Pages:
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97