CKFrame generates frame tag in HTML.
Required attributes: page
or src
or value
Attribute | Type | Description |
---|---|---|
name |
String |
name attribute of HTML's <frame> tag. |
page |
String |
Name of component that supplies the content for the frame. |
src |
String |
You specify the URL or file for the frame. |
value |
CKComponent |
Method that supplies the content. The parent of this element must have the specified method. |
To use frames, ready components that include framesets and CKFrame elements for frame components.
<frameset cols="200,*"> <cgikit name=Index></cgikit> <cgikit name=Contents></cgikit> </frameset>
Index : CKFrame { name = "Index"; page = "IndexPage"; } Contents : CKFrame { name = "Contents"; page = "IntroductionPage"; }