After migration from umbraco v7 to v8 getting DocTypeGridEditorApi issue
Hi,
After migration umbraco v7 to v8, I am getting 404 not found error while loading Content for below path :
"/umbraco/backoffice/DocTypeGridEditorApi/DocTypeGridEditorApi/GetContentTypeIcon"
We are using DocTypeGridEditor version 1.2.9 package for umbraco 8.5.5 only. But still facing same issues. Do we need to make any manual code change on grid.editor.config.js or any other files please let us know.
Great Thanks for your response.
Our target is to make stable umbraco 8.5.5 version first then will move to next 8.6.x. I think something wrong in our coding syntax or configuration which need to make correct. I have shared few example on my just previous post.
In our solution we are using grid.editors.config.js file, where our code is like this and custom datatypes and components are registered in DTGE. Same code is working fine in umbraco-7. But not in V8. Please suggest do we need to make any change here ?
One more example of failing of api calls in controller js files :
$http.get("backoffice/SolutionFinderTagSelector/SolutionFinderTagSelectorApi/FindAll/" + id).then(function (response) {
$scope.tagModel = response.data;
$scope.deleteOrphanedTags();
$scope.isLoading = false;
});
After migration from umbraco v7 to v8 getting DocTypeGridEditorApi issue
Hi,
After migration umbraco v7 to v8, I am getting 404 not found error while loading Content for below path : "/umbraco/backoffice/DocTypeGridEditorApi/DocTypeGridEditorApi/GetContentTypeIcon"
"backoffice/EnumLists/EnumApi/GetAll" "backoffice/SectionPicker/SectionPickerApi/FindAll/"
Is there any specific path or change required for v8 please suggest? Or any specific plugins need to add ?
Thanks, Bishwajit
Did you upgrade Doc Type Grid Editor too?
Hi Søren Kottal,
Which version of docTypeGridEditor required for umbraco 8 ?
I have upgraded docTypeGridEditor with latest version 10.0.1 But still getting same 404 error.
Please help on this.
Thanks, Bishwajit
Hi Søren Kottal,
We are using DocTypeGridEditor version 1.2.9 package for umbraco 8.5.5 only. But still facing same issues. Do we need to make any manual code change on grid.editor.config.js or any other files please let us know.
Please share github link as well.
Thanks, Bishwajit
https://github.com/skttl/umbraco-doc-type-grid-editor
Hi All, Is there any fix for the Bishwajit Banerjee error, we are also experiencing the same error, can you someone help?
Hi Søren Kottal,
We are using 1.2.9 version only in Umbraco 8, but still it throws the errors in BE.
Ok, the package is retired, but the source code is still available in GitHub, if you want to see if you can spot the bug.
1.2.x requires Umbraco 8.6+, make sure to read the docs and release notes.
Hi Søren Kottal,
Great Thanks for your response. Our target is to make stable umbraco 8.5.5 version first then will move to next 8.6.x. I think something wrong in our coding syntax or configuration which need to make correct. I have shared few example on my just previous post.
Thanks, Bishwajit
In our solution we are using grid.editors.config.js file, where our code is like this and custom datatypes and components are registered in DTGE. Same code is working fine in umbraco-7. But not in V8. Please suggest do we need to make any change here ?
{ "name": "Text Area", "alias": "textarea", "view": "/AppPlugins/DocTypeGridEditor/Views/doctypegrideditor.html", "icon": "color-red icon-newspaper-alt", "render": "/AppPlugins/DocTypeGridEditor/Render/DocTypeGridEditor.cshtml", "config": { "allowedDocTypes": [ "ComponentAdvancedConsumerDataCaptureTxtArea" ], "enablePreview": false, "viewPath": "/Views/Partials/Components" } }
One more example of failing of api calls in controller js files : $http.get("backoffice/SolutionFinderTagSelector/SolutionFinderTagSelectorApi/FindAll/" + id).then(function (response) { $scope.tagModel = response.data; $scope.deleteOrphanedTags(); $scope.isLoading = false; });
Thanks, Bishwajit
is working on a reply...