The style and location of navigational links is a combined setting. The generated form will have various buttons, such as Next, Prev, Save, Cancel, etc. Their location relative to the table can be changed. Button positions are:
U | -- up / above table |
D | -- down / below table (default) |
Button possitions should be combined with navigation styles. The style of navigational links may be text, buttons, or graphic images (icons):
B | -- buttons (default) |
T | -- text links |
G | -- graphic links |
Possible combinations include:
Example 3-14. Navigation possibilities
$opts['navigation'] = 'DB'; // buttons below table $opts['navigation'] = 'DT'; // text links below table $opts['navigation'] = 'DG'; // graphics below table $opts['navigation'] = 'UB'; // buttons above table $opts['navigation'] = 'UT'; // text links above table $opts['navigation'] = 'UG'; // graphics above table $opts['navigation'] = 'UDBTG' // all navigations styles |
As you can see from the last example in box above, all navigation styles can be mixed up together to fit your needs. There is no functionality difference between navigation with graphic/text links and navigation using radio buttons selection.