I am new to ColdBox so please be understanding :)
In the documentation I found the option of setting a view from an external module in coldbox, by providing the "module" attribute.
When in my controller I set for example event.setView (view="test_view", module="contentbox");
I get the following error:
Application Execution Exception
Error Type: missinginclude : 0
Error Messages: Page //views/test_view.cfm [C:\(...path...)\slawek_contentbox\views\test_view.cfm] not found
It seems like coldbox is ignoring the module setting and is looking in the main views path \views\
, but I would expect it to look inside \modules\contentbox\views\
.
I would really appreciate if anyone would be able to help me with this issue!