![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I need to make the viewing of the data really easy for my wife... I'd like to modify the list view, so that it has a pull down menu where she can choose view by... - and see just relatives, just friends, just out of town, just those needing hotel rooms, just those Sat night etc. I'm NOT trying to do a sort, where it shows me all records, sorted by these fields. I want to just see those records who meet the criteria for the view by choice. |
#3
| |||
| |||
|
|
rgar... (AT) mac (DOT) com> wrote: I need to make the viewing of the data really easy for my wife... I'd like to modify the list view, so that it has a pull down menu where she can choose view by... - and see just relatives, just friends, just out of town, just those needing hotel rooms, just those Sat night etc. I'm NOT trying to do a sort, where it shows me all records, sorted by these fields. I want to just see those records who meet the criteria for the view by choice. I did this by defining a browser-like quichsearch interface. On your layout(s) have a global text entry field, preferably formatted as a drop down list with a custom value list, and a <Go> or <Search> button next to it. This button calls a script that finds the chosen item in a "quichsearchdata" calculated text field. You define the calculation to fill this field with the necessary items derived from your data fields. Like: relation & <P> & If(outoftown, "out_of_town") etc. etc. (The <P> stands for the pilcrow, the paragraph character from your calculation dialog) |

#4
| |||
| |||
|
|
On Apr 19, 1:13 pm, jri... (AT) xs4all (DOT) nl (Hans) wrote: rgar... (AT) mac (DOT) com> wrote: I need to make the viewing of the data really easy for my wife... I'd like to modify the list view, so that it has a pull down menu where she can choose view by... - and see just relatives, just friends, just out of town, just those needing hotel rooms, just those Sat night etc. I did this by defining a browser-like quichsearch interface. On your layout(s) have a global text entry field, preferably formatted as a drop down list with a custom value list, and a <Go> or <Search> button next to it. This button calls a script that finds the chosen item in a "quichsearchdata" calculated text field. Just be aware that its terrible database design from a modelling perspective. ... You effectively have field in your record that is a copy of several to most of the other fields. Worse, its stored and indexed that way. I'm not saying never do it, I'm just saying be aware that its a hideous solution in terms of what it does to the data model, and if you are going to do it, you should be aware of it. |
![]() |
| Thread Tools | |
| Display Modes | |
| |