You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue here stems from how the grid mapper extracts an alias from the view. The problem is that the view in the grid configuration often ends in ".html" which means the alias will always be "Umbraco.Grid.html" for controls with views like that. Take the following configuration for example.
No need to worry about the leblender reference. I'm using a customized version of it that runs in umbraco 8.
The problem code can be found here. It grabs all the text after the last "." to generate the alias, which in this case leaves only "html." Removing the ".html" for strings that end with it should resolve this issue.
The text was updated successfully, but these errors were encountered:
The issue here stems from how the grid mapper extracts an alias from the view. The problem is that the view in the grid configuration often ends in ".html" which means the alias will always be "Umbraco.Grid.html" for controls with views like that. Take the following configuration for example.
No need to worry about the leblender reference. I'm using a customized version of it that runs in umbraco 8.
The problem code can be found here. It grabs all the text after the last "." to generate the alias, which in this case leaves only "html." Removing the ".html" for strings that end with it should resolve this issue.
The text was updated successfully, but these errors were encountered: