multipul layouts [message #228288] |
Mon, 02 April 2007 07:46 |
sridharbireddy
Messages: 25 Registered: September 2006
|
Junior Member |
|
|
hi,
I created three parameters and three different layouts. what my need is suppose I click first parameter first layout should be displayed for second parameter it will go to second layout and for third one it will display third one.
How it will be achieve?
|
|
|
Re: multipul layouts [message #228299 is a reply to message #228288] |
Mon, 02 April 2007 08:15 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Would something like this help?
Change top level parent frame's Vertical Elasticity property to "Variable". Write a trigger on that frame which would look like this:RETURN :parameter_1 IS NOT NULL; Translated to English: if 'parameter_1' has a value (i.e. you want to display first layout), return TRUE -> display the first layout. Otherwise, return FALSE and do not display it.
Do the same for all three top level parent frames and try it - shouldn't take much time (please, note that I didn't test it).
|
|
|