Coldbox [4.0] setView non-module?

2 things:

1.) Is it possible to set a view and specifically make it not a module view?
I can do the opposite, i.e setView(view=“viewname”,module=“modulename”), but can I do setView(view=“viewname”,module="") from inside a module handler to set a view that ISN’T in the module?

2.) The issue I raised in feb hasn’t been fixed: Explicit Module view rendering by tgmweb · Pull Request #212 · ColdBox/coldbox-platform · GitHub . Unless I’m missing something, I can’t see why anyone would specify an external module view location, and then not want it to be used?

In my opinion, all of the below should render/set the same view. They don’t. The top one renders something different than the other three (when like in my scenario you have an external views locations and parentViewLookup enabled).

renderView(view="myView", module="myModule");
renderView(view="myView"); // called from within myModule
setView(view="myView",module="myModule");
setView(view="myView"); // called from within myModule
Thanks.
Tom.

About 1) you could set in moduleconfig.cfc

`

// If true, looks for views in the parent first, if not found, then in the module. Else vice-versa
this.viewParentLookup = true;

`