TSRef - TypoScript Reference
7.1.9. "FRAME":
|
Property: |
Data type: |
Description: |
Default: |
|---|---|---|---|
|
obj |
pointer to toplevel object-name |
toplevel object-name of a PAGE / FRAMESET
Example: "left", "page", "frameset" |
|
|
options |
url-parameters |
Example: print=1&othervar=anotherthing would add '&print=1&othervar=anotherthing' to the ".src"-content (if not ".src" is set manually!!) |
|
|
params |
<frame>-params |
Example: scrolling="AUTO" noresize frameborder="NO" |
|
|
name |
<frame>-data:name |
Manually set name of frame
NOTE: Is set automatically and should not be overridden under normal conditions! |
value of ".obj" |
|
src |
<frame>-data:src |
Manually set the src of the frame
NOTE: Is set automatically and should not be overridden under normal conditions! |
could be index.php?$id&$type |
[tsref:(page).frameSet.(number)/->FRAMESET.(number)]
Example of a simple frameset with a topframe and content-frame:
frameset = PAGE
frameset.typeNum = 0
page = PAGE
page.typeNum = 1
top = PAGE
top.typeNum = 3
frameset.frameSet.rows = 150,*
frameset.frameSet.params = border="0" framespacing="0" frameborder="NO"
frameset.frameSet {
1 = FRAME
1.obj = top
1.params = scrolling="NO" noresize frameborder="NO" marginwidth="0" marginheight="0"
2 = FRAME
2.obj = page
2.params = scrolling="AUTO" noresize frameborder="NO"
}