Secondary Window info box type |
Info boxes of type Secondary Window are meant to be used to supply extra information about a record instance already shown in a different info box based on the same table. A typical situation where an info box of type Secondary Window is applied, is when you have a record with a large number of columns that cannot all be shown conveniently in multi-record view. You can limit the multi-record view to the columns that are most important, and show other information in a single-record secondary box. Secondary info box (on the right) In the example, the current record is that of Person No. 5. The single-record secondary info box on the right shows details of this person. If the user clicks in the record for No. 6, it will show details of person no. 6. The user can supply new (INSERT) or updated (UPDATE) values in both boxes. USoft will automatically associate input into both boxes with the same database record. For each table in the data model, a default Secondary Window class is offered in the catalog, but these classes are not actually used in the default application. The window shown in the example has not been taken from the default application but has been developed by taking these steps:
SELECT * FROM PERSON
SELECT person_id, first_name, family_name FROM PERSON
|