Default Layout
Default Layout
The default layout in a ColdBox application is layouts/main.cfm
by convention. You can change this by using the layoutSettings
in your Configuration.cfc
.
Default View
There is no default view in ColdBox, but you can configure one by using the same layoutSettings
configuration directive and the defaultView
directive:
This means that if no view is set in the request context, ColdBox will fallback to this view for rendering.
Last updated