What is the doctypegrideditorsurfacecontroller routing
Hi all.
Using Umbraco 8 and wanted to know the routing for DocTypeGridEditorSurfaceController since i wanna be able to call a method inside from AJAX.
What would this routing be?
public class TestDocTypeSurfaceController: DocTypeGridEditorSurfaceController
{
public ActionResult TestDocType()
{
// Do your thing...
return CurrentPartialView();
}
}
Like /Umbraco/DocTypeGridEditor/TestDocType/TestDocType ?
What is the doctypegrideditorsurfacecontroller routing
Hi all.
Using Umbraco 8 and wanted to know the routing for DocTypeGridEditorSurfaceController since i wanna be able to call a method inside from AJAX.
What would this routing be?
Like /Umbraco/DocTypeGridEditor/TestDocType/TestDocType ?
I found out.
Its simply
/umbraco/surface/TestDocTypeSurface/TestDocType
as standard Umbraco.Kick'in my self in the head now! :D
is working on a reply...