Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello Everyone,
I got stuck in one issue with the grid editor. So, I have this scenario here,
I have created content blocks using the nested content inside the grid editor. Everything is working fine, I am able to add/update, etc.
Now, When I am trying to perform the below steps, I am facing issues like opening or updating the content panel.
So, here are the steps, I am trying...
Steps:
Right now, The only way is I have to refresh the page.
I am not sure If anyone else faced this issue.
Looking forward to hearing from the friendliest people.
Hello,
I got solution for this issue, I have just updated below code in umbraco.controller.js file.
$scope.initControl = function (control, index) { control.$index = index; control.$uniqueId = $scope.setUniqueId(); //error handling in case of missing editor.. //should only happen if stripped earlier if (!control.editor) { control.$editorPath = 'views/propertyeditors/grid/editors/error.html'; } if (!control.$editorPath) { var editorConfig = $scope.getEditor(control.editor.alias); if (editorConfig) { control.editor = editorConfig; //if its an absolute path if (control.editor.view.startsWith('/') || control.editor.view.startsWith('~/')) { control.$editorPath = umbRequestHelper.convertVirtualToAbsolutePath(control.editor.view); } else { //use convention control.$editorPath = 'views/propertyeditors/grid/editors/' + control.editor.view + '.html'; } } else { control.$editorPath = 'views/propertyeditors/grid/editors/error.html'; } } else { var editorConfig = $scope.getEditor(control.editor.alias); if (editorConfig) { control.editor = editorConfig; } else { control.$editorPath = 'views/propertyeditors/grid/editors/error.html'; } } };
Hope this can help!!!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Nested content with Grid editor issue while update content and preview
Hello Everyone,
I got stuck in one issue with the grid editor. So, I have this scenario here,
I have created content blocks using the nested content inside the grid editor. Everything is working fine, I am able to add/update, etc.
Now, When I am trying to perform the below steps, I am facing issues like opening or updating the content panel.
So, here are the steps, I am trying...
Steps:
Right now, The only way is I have to refresh the page.
I am not sure If anyone else faced this issue.
Looking forward to hearing from the friendliest people.
Hello,
I got solution for this issue, I have just updated below code in umbraco.controller.js file.
Hope this can help!!!
is working on a reply...