Anyone using Hybrid Framework and Doctype Grid Editor tried to pass a model to a strong typed view using DocTypeGridEditorSurfaceController?
I prefer to use strong typed views, and I tried this, but it's not working:
public class BasicBlockSurfaceController : DocTypeGridEditorSurfaceController
{
public ActionResult BasicBlock()
{
var model = ModelLogic.CreateMasterModel() as MasterModel<BasicBlock>;
return CurrentPartialView(model);
}
}
How can we put a DocTypeGridEditorSurfaceController in the umbraco.extensions project with the rest of controllers? The nuget package only adds the references to the main project
Doctype Grid Editor
Hi All,
Anyone using Hybrid Framework and Doctype Grid Editor tried to pass a model to a strong typed view using DocTypeGridEditorSurfaceController?
I prefer to use strong typed views, and I tried this, but it's not working:
and in my view:
How can we put a DocTypeGridEditorSurfaceController in the umbraco.extensions project with the rest of controllers? The nuget package only adds the references to the main project
is working on a reply...